Generate portable PDBs by default for managed projects (#4362)

This commit is contained in:
Michal Strehovský 2017-08-22 16:36:31 -07:00 коммит произвёл Jan Kotas
Родитель 4135dc55b4
Коммит 4c446d524a
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -104,6 +104,7 @@
<AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<LangVersion>7</LangVersion>
<DebugType Condition="'$(IsProjectNLibrary)' != 'true'">portable</DebugType>
</PropertyGroup>
<!-- Set up handling of build warnings -->

Просмотреть файл

@ -5,6 +5,7 @@
<OutputType Condition="'$(OutputType)' == ''">Exe</OutputType>
<OutputPath>$(MSBuildProjectDirectory)\bin\$(Configuration)\$(Platform)\</OutputPath>
<IntermediateOutputPath>$(MSBuildProjectDirectory)\obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
<DebugType Condition="'$(DebugType)' == ''">portable</DebugType>
</PropertyGroup>
<PropertyGroup>