Removed full pdb workaround, switching to portable pdbs.

This commit is contained in:
Alexandre Zollinger Chohfi 2020-05-27 20:23:41 -07:00
Родитель fec9710003
Коммит d805a13a3d
7 изменённых файлов: 5 добавлений и 15 удалений

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

@ -5,7 +5,10 @@
<PropertyGroup>
<TargetPlatformVersion>10.0.$(DefaultTargetPlatformVersion).0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.$(DefaultTargetPlatformMinVersion).0</TargetPlatformMinVersion>
<DebugType>Full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(DebugType)' == ''">
<DebugType>Portable</DebugType>
</PropertyGroup>
<ItemGroup>

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

@ -21,9 +21,6 @@
- NullableRef&lt;T&gt;: a stack-only struct similar to Ref&lt;T&gt;, which also supports nullable references.
</Description>
<PackageTags>UWP Toolkit Windows core standard unsafe span memory string array stream buffer extensions helpers parallel performance</PackageTags>
<!-- This is a temporary workaround for https://github.com/dotnet/sdk/issues/955 -->
<DebugType>Full</DebugType>
</PropertyGroup>
<Choose>
<When Condition=" '$(TargetFramework)' == 'netstandard1.4' ">

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

@ -12,9 +12,6 @@
</Description>
<PackageTags>UWP Toolkit Windows Parsers Parsing Markdown RSS</PackageTags>
<!-- This is a temporary workaround for https://github.com/dotnet/sdk/issues/955 -->
<DebugType>Full</DebugType>
</PropertyGroup>
<ItemGroup>

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

@ -11,8 +11,6 @@
</Description>
<PackageTags>UWP Community Toolkit Windows Microsoft Graph OneDrive Twitter Translator LinkedIn service login OAuth</PackageTags>
<!-- This is a temporary workaround for https://github.com/dotnet/sdk/issues/955 -->
<DebugType>Full</DebugType>
<NoWarn>CS8002;CS0618</NoWarn>
</PropertyGroup>

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

@ -58,6 +58,7 @@
<PropertyGroup Condition="'$(TargetFramework)' == 'native'">
<OutputType>winmdobj</OutputType>
<DebugType>Full</DebugType>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<!-- Workaround for issue NuGet/Home#8388; change behavior during NuGet restore time vs. final build to avoid NuGet conflict in VS 2019 -->
<NugetTargetMoniker Condition="'$(DesignTimeBuild)' == 'true'">native</NugetTargetMoniker>

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

@ -7,9 +7,6 @@
<PackageTags>UWP Toolkit Windows Platform Specific Analyzer</PackageTags>
<IncludeBuildOutput>false</IncludeBuildOutput>
<!-- This is a temporary workaround for https://github.com/dotnet/sdk/issues/955 -->
<DebugType>Full</DebugType>
</PropertyGroup>
<ItemGroup>

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

@ -11,9 +11,6 @@
- String extensions and array extensions: These extensions make working with string and arrays easier.
</Description>
<PackageTags>UWP Toolkit Windows IncrementalLoadingCollection String Array extensions helpers</PackageTags>
<!-- This is a temporary workaround for https://github.com/dotnet/sdk/issues/955 -->
<DebugType>Full</DebugType>
</PropertyGroup>
<!-- .NET Standard 2.0 doesn't have the Span<T> type -->