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>2021-01-11 16:21:42 +0300
committerGitHub <noreply@github.com>2021-01-11 16:21:42 +0300
commitf80ea00350f6bb102287dfdc91ae1d960d845ef4 (patch)
tree5d2037da60dc3b72457f7c39f3e6d38ff2ec3264 /eng/common/tools.ps1
parent17db5ef4d319d11a842d3bd16ea0f6819cc56bb1 (diff)
Update dependencies from https://github.com/dotnet/arcade build 20210108.3 (#1738)
[master] Update dependencies from dotnet/arcade
Diffstat (limited to 'eng/common/tools.ps1')
-rw-r--r--eng/common/tools.ps16
1 files changed, 5 insertions, 1 deletions
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index ce280eb95..10e98593e 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -645,7 +645,11 @@ function MSBuild() {
$toolsetBuildProject = InitializeToolset
$path = Split-Path -parent $toolsetBuildProject
- $path = Join-Path $path (Join-Path $buildTool.Framework 'Microsoft.DotNet.Arcade.Sdk.dll')
+ $path = Join-Path $path (Join-Path $buildTool.Framework 'Microsoft.DotNet.ArcadeLogging.dll')
+ if (-not (Test-Path $path)) {
+ $path = Split-Path -parent $toolsetBuildProject
+ $path = Join-Path $path (Join-Path $buildTool.Framework 'Microsoft.DotNet.Arcade.Sdk.dll')
+ }
$args += "/logger:$path"
}