Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix symbol paths for xplat.
  • Loading branch information
jkoritzinsky committed Oct 1, 2021
commit 8898eadbbde9c144547f6e03f12bc173bb9a7c7b
4 changes: 4 additions & 0 deletions src/installer/pkg/archives/dotnet-nethost.proj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<Error Condition="'$(SymbolsOutputPath)' == ''" Text="Publishing to disk requires the SymbolsOutputPath to be set to the root of the path to write to." />

<Copy SourceFiles="$(DotNetHostBinDir)\PDB\$(LibPrefix)nethost$(SymbolsSuffix);$(DotNetHostBinDir)\PDB\$(StaticLibPrefix)nethost$(SymbolsSuffix)"
Condition="'$(TargetsWindows)' == 'true'"
DestinationFolder="$(SymbolsOutputPath)" />
<Copy SourceFiles="$(DotNetHostBinDir)\$(LibPrefix)nethost$(LibSuffix)$(SymbolsSuffix)"
Condition="'$(TargetsWindows)' != 'true'"
DestinationFolder="$(SymbolsOutputPath)" />
</Target>
</Project>