Skip to content

Commit

Permalink
fix(perf): Disable untracked sources
Browse files Browse the repository at this point in the history
This causes build performance issues. (dotnet/linker#1409)
  • Loading branch information
jeromelaban committed Aug 4, 2020
1 parent 8b80c6b commit 07dac32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Disabled because of https://github.com/mono/linker/issues/1409 -->
<EmbedUntrackedSources>false</EmbedUntrackedSources>
<!-- Optional: Include PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
Expand Down

0 comments on commit 07dac32

Please sign in to comment.