Browse Source

Fix debugging in Rider after we merged .NET 6

Since we merged #6902 our debugging infra for this repo is not working with Rider. This PR fixes it.
pull/6981/head
Jumar Macato 5 years ago
committed by GitHub
parent
commit
7703795a4a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/SourceLink.props

2
build/SourceLink.props

@ -3,7 +3,7 @@
<PublishRepositoryUrl>true</PublishRepositoryUrl> <PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>false</IncludeSymbols> <IncludeSymbols>false</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources> <EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType> <DebugType>full</DebugType>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup> </PropertyGroup>

Loading…
Cancel
Save