Skip to content

Commit

Permalink
Ship only crossgened assemblies in Microsoft.AspNetCore.App.Runtime…
Browse files Browse the repository at this point in the history
….*.nupkg packages

- #7073
- previously packages contained both `.pdb` (managed, copy-localed) and `.ni.pdb` (native, `crossgen`ed) files
  • Loading branch information
dougbu committed Jul 23, 2019
1 parent 4928eb3 commit 7e81c79
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,10 @@ This package is an internal implementation of the .NET Core SDK and is not meant
EnvironmentVariables="COMPlus_PartialNGen=0"
IgnoreStandardErrorWarningFormat="true"
StandardOutputImportance="High" />

<Move Condition=" '$(GenerateCrossgenProfilingSymbols)' == 'true' "
SourceFiles="$(TargetDir)%(IntermediateCrossgenAssembly.FileName).ni.pdb"
DestinationFiles="$(TargetDir)%(IntermediateCrossgenAssembly.FileName).pdb" />
</Target>

<!--
Expand Down

0 comments on commit 7e81c79

Please sign in to comment.