From bd0c5f49d3c8b0878dc521a8484681633513a39f Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 May 2017 13:16:52 -0700 Subject: [PATCH] Fix folder name for cross-targeting assets Commit migrated from https://github.com/dotnet/coreclr/commit/7c53fc2cee6f0a37db8a7d797c8cd2482c96cef6 --- .../runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props | 2 +- src/coreclr/src/.nuget/dir.targets | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props b/src/coreclr/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props index a7d8555..cd37324 100644 --- a/src/coreclr/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props +++ b/src/coreclr/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props @@ -44,7 +44,7 @@ - tools\$(CrossTargetComponentFolder)_$(PackagePlatform)\%(FileName)$(CrossTargetLongNameSuffix)%(Extension) + tools\$(CrossTargetComponentFolder)_$(Platform)\%(FileName)$(CrossTargetLongNameSuffix)%(Extension) diff --git a/src/coreclr/src/.nuget/dir.targets b/src/coreclr/src/.nuget/dir.targets index 49e550a..8628a0d 100644 --- a/src/coreclr/src/.nuget/dir.targets +++ b/src/coreclr/src/.nuget/dir.targets @@ -32,10 +32,10 @@ - runtimes/$(CrossTargetComponentFolder)_$(PackagePlatform)/native + runtimes/$(CrossTargetComponentFolder)_$(Platform)/native - tools/$(CrossTargetComponentFolder)_$(PackagePlatform) + tools/$(CrossTargetComponentFolder)_$(Platform) -- 2.7.4