summaryrefslogtreecommitdiff
path: root/src/.nuget
diff options
context:
space:
mode:
authorKarthik Rajasekaran <karajas@microsoft.com>2017-06-01 15:59:00 -0700
committerGitHub <noreply@github.com>2017-06-01 15:59:00 -0700
commit91329ceefd9efbde1f8486b0a098090e9a10adcb (patch)
tree8baed166056a51a0991fd1642d4923eb6ade9faa /src/.nuget
parent441f86cd0181864c4fe93ae4f8eaacd392437834 (diff)
downloadcoreclr-91329ceefd9efbde1f8486b0a098090e9a10adcb.tar.gz
coreclr-91329ceefd9efbde1f8486b0a098090e9a10adcb.tar.bz2
coreclr-91329ceefd9efbde1f8486b0a098090e9a10adcb.zip
Ensure that platform is considered for LongPlatformName instead of PackagePlatform (#11900)
Diffstat (limited to 'src/.nuget')
-rw-r--r--src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
index 454ca1d4b7..57cc46f86e 100644
--- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
+++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
@@ -2,8 +2,8 @@
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PackageTargetRuntime>$(MinOSForArch)-$(PackagePlatform)</PackageTargetRuntime>
- <LongNamePlatform>$(PackagePlatform)</LongNamePlatform>
- <LongNamePlatform Condition="'$(LongNamePlatform)'=='x64'">amd64</LongNamePlatform>
+ <LongNamePlatform>$(Platform)</LongNamePlatform>
+ <LongNamePlatform Condition="'$(Platform)'=='x64'">amd64</LongNamePlatform>
<CrossTargetPlatform>$(CrossTargetComponentFolder)</CrossTargetPlatform>
<CrossTargetPlatform Condition="'$(CrossTargetPlatform)'=='x64'">amd64</CrossTargetPlatform>
<LongNameSuffix>_$(LongNamePlatform)_$(LongNamePlatform)_$(MajorVersion).$(MinorVersion).$(BuildNumberMajor).0$(BuildNumberMinor)</LongNameSuffix>