Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnirudh Agnihotry <anirudhagnihotry098@gmail.com>2020-03-05 18:51:06 +0300
committerGitHub <noreply@github.com>2020-03-05 18:51:06 +0300
commitfef9ca70f6e7268dfc9e0f600433f5293932f166 (patch)
tree53ff21a1864acf0570ce205e3065439dc2a2ee0f /eng/build.sh
parent2f6e072c97738a56eeeb25f1fdb5dcc955649db0 (diff)
Replacing OSGroup with TargetOS for coreclr, libraries and installer (#32833)
* Remove OSGroup from coreclr and corefx * remove from installer * fixing coreclr tests * Some documentation changes Co-Authored-By: Viktor Hofer <viktor.hofer@microsoft.com> * moving buildos calculation to config.props * BuildOS -> TargetOS * remove osgroup suffix * removing comment and correcting typo * dotnet msbuild -> dotnet build at relevant places in docs * moving more properties to configuration.props * refactoring properties * moving TargetArchitecture property to loveBuildd.Targets * adding configuration.props to signing * Fix installer build * BuildOS -> Target os and removing slash Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
Diffstat (limited to 'eng/build.sh')
-rwxr-xr-xeng/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/build.sh b/eng/build.sh
index e16cff0a1c4..1a3c98853f2 100755
--- a/eng/build.sh
+++ b/eng/build.sh
@@ -65,7 +65,7 @@ initDistroRid()
source $scriptroot/native/init-distro-rid.sh
local passedRootfsDir=""
- local buildOs="$1"
+ local targetOs="$1"
local buildArch="$2"
local isCrossBuild="$3"
# For RID calculation purposes, say we are always a portable build
@@ -76,7 +76,7 @@ initDistroRid()
if (( isCrossBuild == 1 )); then
passedRootfsDir=${ROOTFS_DIR}
fi
- initDistroRidGlobal ${buildOs} ${buildArch} ${isPortableBuild} ${passedRootfsDir}
+ initDistroRidGlobal ${targetOs} ${buildArch} ${isPortableBuild} ${passedRootfsDir}
}
arguments=''
@@ -127,7 +127,7 @@ while [[ $# > 0 ]]; do
;;
-os)
os=$2
- arguments="$arguments /p:OSGroup=$2"
+ arguments="$arguments /p:TargetOS=$2"
shift 2
;;
-allconfigurations)