From 4412f3093b65d647217567a1a4db53619474b30f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Dec 2018 13:09:00 +0000 Subject: [PATCH] Update dependencies from https://github.com/dotnet/arcade build 908 (#195) This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.18619.4 --- eng/Version.Details.xml | 4 +-- eng/common/PublishToPackageFeed.proj | 37 ++++++++++++++++++++++++++++ eng/common/build.ps1 | 6 ++++- global.json | 2 +- 4 files changed, 45 insertions(+), 4 deletions(-) create mode 100644 eng/common/PublishToPackageFeed.proj diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 03f54be1d..cb7c99089 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -2,9 +2,9 @@ - + https://github.com/dotnet/arcade - 090315e5d933cba3798abbfaa43e49e2245d6b35 + 7d79a676328f2bdd8b14bfee7fac6dad23123fad diff --git a/eng/common/PublishToPackageFeed.proj b/eng/common/PublishToPackageFeed.proj new file mode 100644 index 000000000..7dc478d98 --- /dev/null +++ b/eng/common/PublishToPackageFeed.proj @@ -0,0 +1,37 @@ + + + + netcoreapp2.1 + + + + + + + + + + + + + + + + + + diff --git a/eng/common/build.ps1 b/eng/common/build.ps1 index d282c71cf..2f5e6052a 100644 --- a/eng/common/build.ps1 +++ b/eng/common/build.ps1 @@ -80,7 +80,11 @@ function Build { $bl = if ($binaryLog) { "/bl:" + (Join-Path $LogDir "Build.binlog") } else { "" } if ($projects) { - $properties += "/p:Projects=$projects" + # Re-assign properties to a new variable because PowerShell doesn't let us append properties directly for unclear reasons. + # Explicitly set the type as string[] because otherwise PowerShell would make this char[] if $properties is empty. + [string[]] $msbuildArgs = $properties + $msbuildArgs += "/p:Projects=$projects" + $properties = $msbuildArgs } MSBuild $toolsetBuildProj ` diff --git a/global.json b/global.json index 78ac63c5a..e2aedd32a 100644 --- a/global.json +++ b/global.json @@ -9,6 +9,6 @@ "version": "3.0.100-preview-009764" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18618.7" + "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.18619.4" } } -- GitLab