summaryrefslogtreecommitdiff
path: root/src/.nuget
diff options
context:
space:
mode:
authorMichelle McDaniel <adiaaida@gmail.com>2017-03-06 14:36:19 -0800
committerMichelle McDaniel <adiaaida@gmail.com>2017-03-06 14:36:19 -0800
commit0444288993ff9ced49a215e4d2a01a2363d9fc4b (patch)
tree97155ab0094595d654ab88ba519de94a9b1926cf /src/.nuget
parentaeef0d20caceb33c80312fdf40ed242139cdd003 (diff)
downloadcoreclr-0444288993ff9ced49a215e4d2a01a2363d9fc4b.tar.gz
coreclr-0444288993ff9ced49a215e4d2a01a2363d9fc4b.tar.bz2
coreclr-0444288993ff9ced49a215e4d2a01a2363d9fc4b.zip
Change PackagePlatform to Platform for x86 jit pkg
PackagePlatform was removed in 8dcf9665feabee339029c79b9d86dd24c71905d1, but the x86 jit package props file was never updated to not use that property. This change updates the props file to use Platform instead of PackagePlatform to make sure we package compatjit.dll for x86.
Diffstat (limited to 'src/.nuget')
-rw-r--r--src/.nuget/Microsoft.NETCore.Jit/runtime.Windows_NT.Microsoft.NETCore.Jit.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/.nuget/Microsoft.NETCore.Jit/runtime.Windows_NT.Microsoft.NETCore.Jit.props b/src/.nuget/Microsoft.NETCore.Jit/runtime.Windows_NT.Microsoft.NETCore.Jit.props
index 1485fcca29..dcc864163c 100644
--- a/src/.nuget/Microsoft.NETCore.Jit/runtime.Windows_NT.Microsoft.NETCore.Jit.props
+++ b/src/.nuget/Microsoft.NETCore.Jit/runtime.Windows_NT.Microsoft.NETCore.Jit.props
@@ -2,7 +2,7 @@
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<NativeBinary Include="$(BinDir)clrjit.dll" />
- <NativeBinary Condition="'$(PackagePlatform)' == 'x86'" Include="$(BinDir)compatjit.dll" />
+ <NativeBinary Condition="'$(Platform)' == 'x86'" Include="$(BinDir)compatjit.dll" />
<CrossArchitectureSpecificNativeFileAndSymbol Include="$(BinDir)$(CrossTargetComponentFolder)\clrjit.dll" />
<!-- prevent accidental inclusion in AOT projects. -->