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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-09-26 19:43:10 +0300
committerMarek Safar <marek.safar@gmail.com>2019-09-27 11:32:57 +0300
commitba093a07b7ea220baddc280942247b828ba0c5d1 (patch)
treed6956a9f3a9db9e96c374728e5f1e439a0fbb957 /eng/common/build.ps1
parentd5c49121b6bb422102a42071816cf203794133c8 (diff)
Update dependencies from https://github.com/dotnet/arcade build 20190923.5
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19473.5 - Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19473.5
Diffstat (limited to 'eng/common/build.ps1')
-rw-r--r--eng/common/build.ps14
1 files changed, 4 insertions, 0 deletions
diff --git a/eng/common/build.ps1 b/eng/common/build.ps1
index feb58d14191..e001ccb481c 100644
--- a/eng/common/build.ps1
+++ b/eng/common/build.ps1
@@ -85,6 +85,10 @@ function Build {
# 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
+
+ # Resolve relative project paths into full paths
+ $projects = ($projects.Split(';').ForEach({Resolve-Path $_}) -join ';')
+
$msbuildArgs += "/p:Projects=$projects"
$properties = $msbuildArgs
}