Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props6
1 files changed, 4 insertions, 2 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index f85d60a6c..407631590 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -8,9 +8,11 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(IsReferenceAssembly)' == 'true' ">
<ProduceOnlyReferenceAssembly>true</ProduceOnlyReferenceAssembly>
- <!-- used by Arcade to compute OutputPath, IntermediateOutputPath, etc. early in the import chain. -->
+ <!-- No symbols are produced for ref assemblies, but some parts of the SDK still expect pdbs, so we explicitly tell it there are none. -->
+ <DebugType>none</DebugType>
+ <!-- Used by Arcade to compute OutputPath, IntermediateOutputPath, etc. early in the import chain. -->
<OutDirName>$(MSBuildProjectName)/ref</OutDirName>
- <!-- don't try to publish PDBs for ref assemblies that have none. -->
+ <!-- Don't try to publish PDBs for ref assemblies that have none. -->
<PublishWindowsPdb>false</PublishWindowsPdb>
<RunApiCompat>false</RunApiCompat>
</PropertyGroup>