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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2020-04-28 01:20:07 +0300
committerGitHub <noreply@github.com>2020-04-28 01:20:07 +0300
commit4d6d8adebef9216c99d07b41a3261a47bf7a91f5 (patch)
tree684b8f0a27695f8673ad802b956780596354fcd6 /eng/common/tools.ps1
parentd396e94a9531ccd6409a903ad92a6791e1ffe282 (diff)
[master] Update dependencies from dotnet/arcade (#1144)
* Update dependencies from https://github.com/dotnet/arcade build 20200421.14 - Microsoft.DotNet.ApiCompat: 5.0.0-beta.20201.2 -> 5.0.0-beta.20221.14 - Microsoft.DotNet.Arcade.Sdk: 5.0.0-beta.20201.2 -> 5.0.0-beta.20221.14 * Add dotnet-tools nuget feed * Work around ApiCompat change https://github.com/dotnet/arcade/issues/5361 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com> Co-authored-by: Sven Boemer <sbomer@gmail.com>
Diffstat (limited to 'eng/common/tools.ps1')
-rw-r--r--eng/common/tools.ps17
1 files changed, 5 insertions, 2 deletions
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index 60c1cd897..3721ce881 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -488,10 +488,11 @@ function GetNuGetPackageCachePath() {
if ($env:NUGET_PACKAGES -eq $null) {
# Use local cache on CI to ensure deterministic build,
# use global cache in dev builds to avoid cost of downloading packages.
+ # For directory normalization, see also: https://github.com/NuGet/Home/issues/7968
if ($useGlobalNuGetCache) {
- $env:NUGET_PACKAGES = Join-Path $env:UserProfile '.nuget\packages'
+ $env:NUGET_PACKAGES = Join-Path $env:UserProfile '.nuget\packages\'
} else {
- $env:NUGET_PACKAGES = Join-Path $RepoRoot '.packages'
+ $env:NUGET_PACKAGES = Join-Path $RepoRoot '.packages\'
}
}
@@ -632,6 +633,8 @@ function MSBuild-Core() {
}
}
+ $env:ARCADE_BUILD_TOOL_COMMAND = "$($buildTool.Path) $cmdArgs"
+
$exitCode = Exec-Process $buildTool.Path $cmdArgs
if ($exitCode -ne 0) {