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

github.com/dotnet/runtime.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-09 18:57:05 +0300
committerGitHub <noreply@github.com>2021-01-09 18:57:05 +0300
commit99a3813b5c18fd108b43a05a011b33cee60384a4 (patch)
tree8be32ac959dd0e800b46a8e7d5ac7104c7bdd481 /eng/common/tools.ps1
parent7d094bb83579998ab1c1f601d6ae49f4067ebd80 (diff)
[master] Update dependencies from dotnet/runtime-assets dotnet/arcade (#46744)
[master] Update dependencies from dotnet/runtime-assets 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 ce280eb95b1..10e98593e0c 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"
}