From b2f908b78e6bb7b2d923896e52404bec31a24e27 Mon Sep 17 00:00:00 2001 From: "Matt Mitchell (.NET)" Date: Mon, 24 Feb 2025 10:44:57 -0800 Subject: [PATCH 1/3] Attempt to force an x64 runtime --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 04ae0b82528..54c544e205b 100644 --- a/global.json +++ b/global.json @@ -2,7 +2,7 @@ "tools": { "dotnet": "10.0.100-alpha.1.25077.2", "runtimes": { - "dotnet": [ + "dotnet/x64": [ "$(VSRedistCommonNetCoreSharedFrameworkx64100PackageVersion)" ] }, From b77cf9b3e3b1d0c683187c973ef3a25701a2de56 Mon Sep 17 00:00:00 2001 From: "Matt Mitchell (.NET)" Date: Mon, 24 Feb 2025 12:04:11 -0800 Subject: [PATCH 2/3] Maybe install both --- global.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/global.json b/global.json index 54c544e205b..f9a18d7fea5 100644 --- a/global.json +++ b/global.json @@ -4,6 +4,9 @@ "runtimes": { "dotnet/x64": [ "$(VSRedistCommonNetCoreSharedFrameworkx64100PackageVersion)" + ], + "dotnet": [ + "$(VSRedistCommonNetCoreSharedFrameworkx64100PackageVersion)" ] }, "vs": { From 5eb7c2a19c13dd81b7996d35c3a6a6e8e3506e38 Mon Sep 17 00:00:00 2001 From: "Matt Mitchell (.NET)" Date: Mon, 24 Feb 2025 14:05:42 -0800 Subject: [PATCH 3/3] x86 explicitly --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index f9a18d7fea5..bc9ce513731 100644 --- a/global.json +++ b/global.json @@ -5,7 +5,7 @@ "dotnet/x64": [ "$(VSRedistCommonNetCoreSharedFrameworkx64100PackageVersion)" ], - "dotnet": [ + "dotnet/x86": [ "$(VSRedistCommonNetCoreSharedFrameworkx64100PackageVersion)" ] },