From 6c3b8adb3d8dab3dad929786867e10b76233147a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 18 Feb 2020 19:56:44 +0100 Subject: [PATCH] Fix Platform setting in mono nuget Directory.Build.props (#32491) Otherwise doing `./mono.sh -pack` didn't work since it'd use amd64 instead of x64. We copied much of this logic from coreclr so I assume this is specific to their build, but I still don't fully understand every bit. --- src/mono/netcore/nuget/Directory.Build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/netcore/nuget/Directory.Build.props b/src/mono/netcore/nuget/Directory.Build.props index 778b94b..662c5d5 100644 --- a/src/mono/netcore/nuget/Directory.Build.props +++ b/src/mono/netcore/nuget/Directory.Build.props @@ -181,14 +181,14 @@ - amd64 + x64 $(ArchGroup) <_project Include="@(BuildRID)"> - amd64 + x64 %(Identity) PackageTargetRuntime=%(Identity);Platform=%(Platform) -- 2.7.4