From 160569a53024729c70b014fcad3c005e05a11ad2 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 22 May 2020 09:35:59 -0600 Subject: [PATCH 1/3] Update package references --- Directory.Build.props | 6 +++--- test/Library.Tests/Library.Tests.csproj | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 7a97368f..9c119f37 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -24,11 +24,11 @@ - + - - + + diff --git a/test/Library.Tests/Library.Tests.csproj b/test/Library.Tests/Library.Tests.csproj index 28433bf5..29ac7bf8 100644 --- a/test/Library.Tests/Library.Tests.csproj +++ b/test/Library.Tests/Library.Tests.csproj @@ -6,7 +6,7 @@ - + From 6d120a6a222577b239671d0f14f89bd5c63dbb59 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 22 May 2020 09:56:20 -0600 Subject: [PATCH 2/3] Update SDK to 3.1.300 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 0275fa5c..0200a660 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "3.1.201", + "version": "3.1.300", "rollForward": "patch", "allowPrerelease": false } From ecbb92cd2f3022bb408014c8394869c8f9ed20a2 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 22 May 2020 10:20:17 -0600 Subject: [PATCH 3/3] Quote arguments to mklink This prevents breaks when the linked paths contain spaces, commas or other characters. --- azure-pipelines/artifacts/_stage_all.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/artifacts/_stage_all.ps1 b/azure-pipelines/artifacts/_stage_all.ps1 index a05db529..4e6a6dbe 100644 --- a/azure-pipelines/artifacts/_stage_all.ps1 +++ b/azure-pipelines/artifacts/_stage_all.ps1 @@ -33,7 +33,7 @@ function Create-SymbolicLink { if ($IsMacOS -or $IsLinux) { ln $Target $Link | Out-Null } else { - cmd /c mklink $Link $Target | Out-Null + cmd /c "mklink `"$Link`" `"$Target`"" | Out-Null } }