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:
authorViktor Hofer <viktor.hofer@microsoft.com>2020-02-25 10:58:14 +0300
committerGitHub <noreply@github.com>2020-02-25 10:58:14 +0300
commit059d0385ff7f6a7b12557e533fccddd5b484a3ce (patch)
tree069a345974710437121496ac80dfcffc906276a4 /eng/build.ps1
parent671b2ef6272330b51ddbaa4fa96e411e3f701231 (diff)
Add ConfigurationGroup back to entrypoints (#32762)
ConfigurationGroup was removed but installer still uses and depends on it. Bringing it back in the entrypoint build scripts and in the managed msbuild Configurations.props file.
Diffstat (limited to 'eng/build.ps1')
-rw-r--r--eng/build.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/build.ps1 b/eng/build.ps1
index 8d3e582b8ad..cf9297f8339 100644
--- a/eng/build.ps1
+++ b/eng/build.ps1
@@ -138,7 +138,7 @@ foreach ($argument in $PSBoundParameters.Keys)
"build" { $arguments += " -build" }
"buildtests" { if ($build -eq $true) { $arguments += " /p:BuildTests=true" } else { $arguments += " -build /p:BuildTests=only" } }
"test" { $arguments += " -test" }
- "configuration" { $arguments += " -configuration $((Get-Culture).TextInfo.ToTitleCase($($PSBoundParameters[$argument])))" }
+ "configuration" { $configuration = (Get-Culture).TextInfo.ToTitleCase($($PSBoundParameters[$argument])); $arguments += " /p:ConfigurationGroup=$configuration -configuration $configuration" }
"runtimeConfiguration" { $arguments += " /p:RuntimeConfiguration=$((Get-Culture).TextInfo.ToTitleCase($($PSBoundParameters[$argument])))" }
"framework" { $arguments += " /p:BuildTargetFramework=$($PSBoundParameters[$argument].ToLowerInvariant())" }
"os" { $arguments += " /p:OSGroup=$($PSBoundParameters[$argument])" }