From 75c3e74ea35219f257c80daf9a236e0f518a7875 Mon Sep 17 00:00:00 2001 Patch-Source: https://github.com/dotnet/installer/pull/13378 From: Antoine Martin Date: Wed, 9 Mar 2022 20:16:03 +0000 Subject: [PATCH 1/1] arm support By default, build does not support arm. This patch introduces all the logics to parse platform information. --- Directory.Build.props | 2 +- repos/known-good.proj | 2 +- repos/runtime.common.props | 2 +- tools-local/init-build.proj | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 61cc6ff67..d921eda93 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -17,7 +17,7 @@ $([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture.ToString().ToLowerInvariant()) - $(BuildArchitecture) + $(BuildArchitecture) $(BuildArchitecture) x64 diff --git a/repos/known-good.proj b/repos/known-good.proj index eab516290..c04cdac70 100644 --- a/repos/known-good.proj +++ b/repos/known-good.proj @@ -18,7 +18,7 @@ - + diff --git a/repos/runtime.common.props b/repos/runtime.common.props index b1e9e6adb..037c3d94a 100644 --- a/repos/runtime.common.props +++ b/repos/runtime.common.props @@ -13,7 +13,7 @@ $(StandardSourceBuildArgs.Replace('-bl', '-nobl')) $(StandardSourceBuildCommand) $(BuildCommandArgs) - $(ArmEnvironmentVariables) $(StandardSourceBuildCommand) $(BuildCommandArgs) + $(ArmEnvironmentVariables) $(StandardSourceBuildCommand) $(BuildCommandArgs) $(ProjectDirectory)/clean$(ShellExtension) diff --git a/tools-local/init-build.proj b/tools-local/init-build.proj index 701f76c0c..b2c3beed1 100644 --- a/tools-local/init-build.proj +++ b/tools-local/init-build.proj @@ -138,7 +138,7 @@ - + -- 2.35.1