summaryrefslogtreecommitdiff
path: root/src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props
diff options
context:
space:
mode:
authorDavis Goodin <dagood@users.noreply.github.com>2017-03-06 11:40:56 -0600
committerGitHub <noreply@github.com>2017-03-06 11:40:56 -0600
commit61619268805bace6b730de1237fd3c7545eb99b5 (patch)
tree88ab014e32723820014e813e22a7b5a2b071e8e9 /src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props
parentccf4cb343f6b9f47fc4b08d8811ead1caa3c706c (diff)
downloadcoreclr-61619268805bace6b730de1237fd3c7545eb99b5.tar.gz
coreclr-61619268805bace6b730de1237fd3c7545eb99b5.tar.bz2
coreclr-61619268805bace6b730de1237fd3c7545eb99b5.zip
Add stripSymbols argument; refactor symbol package build (#9664)
* Add argument to explicitly enable symbol stripping * Refactor symbol package build * Remove unnecessary native file distinctions * Remove unnecessary WindowsSymbolFile step
Diffstat (limited to 'src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props')
-rw-r--r--src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props b/src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props
index bab9b9f8ba..96c2595cf9 100644
--- a/src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props
+++ b/src/.nuget/Microsoft.NETCore.TestHost/runtime.Windows_NT.Microsoft.NETCore.TestHost.props
@@ -4,18 +4,6 @@
<PackageTargetRuntime>$(MinOSForArch)-$(PackagePlatform)</PackageTargetRuntime>
</PropertyGroup>
<ItemGroup>
- <ArchitectureSpecificNativeFile Include="$(BinDir)CoreRun.exe" />
- <File Include="@(ArchitectureSpecificNativeFile)">
- <TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
- </File>
- </ItemGroup>
- <ItemGroup>
- <ArchitectureSpecificNativeSymbol Include="@(ArchitectureSpecificNativeFile -> '%(RelativeDir)PDB\%(FileName).pdb')" />
- <AdditionalSymbolPackageExcludes Include="%2A%2A\%2A.dll" />
- <ArchitectureSpecificNativeSymbol Include="..\_.pdb" />
- <File Include="@(ArchitectureSpecificNativeSymbol)">
- <TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
- <IsSymbolFile>true</IsSymbolFile>
- </File>
+ <NativeBinary Include="$(BinDir)CoreRun.exe" />
</ItemGroup>
</Project>