mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00
Fixing the sourcelink failure for embeded files (#33521)
* fixing sourcelink * enable sourcelink on official build * addressing feedback * removing extra space * reverting eng common change * adding comment * moving comment to correct place * not embedding files for test assemblies
This commit is contained in:
parent
1bce90ddc4
commit
570fa1d2ae
9 changed files with 13 additions and 33 deletions
|
@ -20,4 +20,15 @@
|
|||
<NETCoreAppMaximumVersion>$(MajorVersion).$(MinorVersion)</NETCoreAppMaximumVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<GeneratedAssemblyInfoFile>$([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(MSBuildProjectName).AssemblyInfo$(DefaultLanguageSourceExtension)'))</GeneratedAssemblyInfoFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<!--
|
||||
All source inputs to the compiler should be generated before BeforeCompile target. Sdk is not
|
||||
honoring this for GenerateAssemblyInfo target. https://github.com/dotnet/sdk/issues/10614
|
||||
-->
|
||||
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
|
||||
<EmbeddedFiles Include="$(GeneratedAssemblyInfoFile)"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue