We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c293037 commit 7c8a5c0Copy full SHA for 7c8a5c0
src/Directory.Build.props
@@ -13,6 +13,10 @@
13
<AnalysisLevel>latest</AnalysisLevel>
14
<AnalysisMode>recommended</AnalysisMode>
15
<SharedRoot>$(SrcRoot)Shared/</SharedRoot>
16
+ <!-- This setting makes symbol files (PDBs) available, which is seemingly necessary for having a 'deterministic' build checkmark in our NuGet package.
17
+ This is recommended for NuGet packages, as per: https://devblogs.microsoft.com/dotnet/producing-packages-with-source-link/
18
+ The connection to deterministic builds is explored here: https://www.meziantou.net/creating-reproducible-build-in-dotnet.htm -->
19
+ <DebugType>portable</DebugType>
20
</PropertyGroup>
21
22
<Import Project="$(EngRoot)targets/Release.props" />
0 commit comments