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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2016-01-18 23:16:08 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2016-01-18 23:16:08 +0300
commit3455f80483fbe89894f8ba69eafa0641bc78ecd8 (patch)
treefedf2ef6501817b330668b1b61b55ef264e6eee1 /GenerateBuilds.ps1
parente7e275654026c2488f6a4116ff5f390e8ce015be (diff)
Remove OSGroup=Windows_NT from netcore50/netcore50aot configurations
Originally the goal was to tag the configurations with OSGroup=Windows_NT if they were only applicable on that OS. However there is nothing particular to that OS for most of them and they can build and run on an OS that supports the managed dependencies. More importantly we want to enable people to build IL only packages on any OS and not force them to have a separate windows only package for things targeting netcore50/netcore50aot. As an example System.AppContext recently introduced an IL only package that can and should build fine on other OS's.
Diffstat (limited to 'GenerateBuilds.ps1')
-rw-r--r--GenerateBuilds.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/GenerateBuilds.ps1 b/GenerateBuilds.ps1
index b4894723ef..fd3ab9641d 100644
--- a/GenerateBuilds.ps1
+++ b/GenerateBuilds.ps1
@@ -163,7 +163,7 @@ function GetConfigurations($projs, $srcDir, $projName)
$target = $matches["tg"];
$relPath = $proj.FullName.Replace($srcDir.FullName+"\", "");
- if ($target -match "netcore.+") { $os = "Windows" }
+ #if ($target -match "netcore.+") { $os = "Windows" }
if ($os -eq "Windows") { $os = "Windows_NT" }