Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Use Full PDB format for net4* projects #754

Merged
merged 1 commit into from
Jan 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@
</PackageReference>
</ItemGroup>

<!-- Work around an issue where portable PDB is not supported yet in Api scan tool.
This does not work in Directory.Build.props because $(TargetFramework) has not been set yet
when it is imported. -->
<PropertyGroup>
<DebugType Condition=" $(TargetFramework.StartsWith('net4')) ">Full</DebugType>
</PropertyGroup>

<!-- In .NET Core SDK 1.0-rc3, all *.cs files are implicitly added for compiled. This includes the test files we embed as resources.
We explicitly remove them here so that they are not compiled.
BUG: https://github.com/dotnet/sdk/issues/977 -->
Expand Down