summaryrefslogtreecommitdiff
path: root/src/mscorlib/System.Private.CoreLib.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/System.Private.CoreLib.csproj')
-rw-r--r--src/mscorlib/System.Private.CoreLib.csproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mscorlib/System.Private.CoreLib.csproj b/src/mscorlib/System.Private.CoreLib.csproj
index 4919269b32..ca4b19e1d2 100644
--- a/src/mscorlib/System.Private.CoreLib.csproj
+++ b/src/mscorlib/System.Private.CoreLib.csproj
@@ -73,14 +73,14 @@
<DebugSymbols>true</DebugSymbols>
<Optimize Condition="'$(Optimize)' == '' and '$(Configuration)' == 'Debug'">false</Optimize>
<Optimize Condition="'$(Optimize)' == '' and '$(Configuration)' == 'Checked'">true</Optimize>
- <DebugType>full</DebugType>
+ <DebugType Condition="'$(DebugType)' == ''">full</DebugType>
<DefineConstants>DBG;_DEBUG;_LOGGING;DEBUG;TRACE;$(DefineConstants)</DefineConstants>
<DefineConstants Condition="'$(Platform)' == 'x86' or '$(Platform)' == 'amd64'">CODE_ANALYSIS;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugSymbols>true</DebugSymbols>
<Optimize Condition="'$(Optimize)' == ''">true</Optimize>
- <DebugType>pdbOnly</DebugType>
+ <DebugType Condition="'$(DebugType)' == ''">pdbOnly</DebugType>
<DefineConstants>TRACE;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<!-- Make portable PDBs on Unix -->