From d61abf177dfa39949eb4e183fa289157465945d6 Mon Sep 17 00:00:00 2001 From: Sean Fausett Date: Wed, 20 May 2020 20:49:33 +1200 Subject: [PATCH] Bump dependencies --- src/Cake.Common.Tests/Cake.Common.Tests.csproj | 8 ++++---- src/Cake.Core.Tests/Cake.Core.Tests.csproj | 8 ++++---- src/Cake.Core/Cake.Core.csproj | 4 ++-- src/Cake.NuGet.Tests/Cake.NuGet.Tests.csproj | 8 ++++---- src/Cake.NuGet/Cake.NuGet.csproj | 18 +++++++++--------- src/Cake.Tests/Cake.Tests.csproj | 8 ++++---- .../Tools/DotNetCore/DotNetCoreAliases.cake | 14 +++++++------- .../DotNetCore/hwapp.tests/hwapp.tests.csproj | 12 ++++++------ .../Tools/DotNetCore/hwapp/hwapp.csproj | 2 +- 9 files changed, 41 insertions(+), 41 deletions(-) diff --git a/src/Cake.Common.Tests/Cake.Common.Tests.csproj b/src/Cake.Common.Tests/Cake.Common.Tests.csproj index ba363d481f..71591132e2 100644 --- a/src/Cake.Common.Tests/Cake.Common.Tests.csproj +++ b/src/Cake.Common.Tests/Cake.Common.Tests.csproj @@ -1,7 +1,7 @@  Cake.Common.Tests - net461;netcoreapp2.0;netcoreapp3.0 + net461;netcoreapp2.1;netcoreapp3.1 true true @@ -17,11 +17,11 @@ - + - - + + diff --git a/src/Cake.Core.Tests/Cake.Core.Tests.csproj b/src/Cake.Core.Tests/Cake.Core.Tests.csproj index 2861013b11..f711e4f266 100644 --- a/src/Cake.Core.Tests/Cake.Core.Tests.csproj +++ b/src/Cake.Core.Tests/Cake.Core.Tests.csproj @@ -1,7 +1,7 @@  Cake.Core.Tests - net461;netcoreapp2.0;netcoreapp3.0 + net461;netcoreapp2.1;netcoreapp3.1 true true @@ -15,11 +15,11 @@ - + - - + + diff --git a/src/Cake.Core/Cake.Core.csproj b/src/Cake.Core/Cake.Core.csproj index 04cc952b32..b7066fded6 100644 --- a/src/Cake.Core/Cake.Core.csproj +++ b/src/Cake.Core/Cake.Core.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/src/Cake.NuGet.Tests/Cake.NuGet.Tests.csproj b/src/Cake.NuGet.Tests/Cake.NuGet.Tests.csproj index c527614960..c555f810f4 100644 --- a/src/Cake.NuGet.Tests/Cake.NuGet.Tests.csproj +++ b/src/Cake.NuGet.Tests/Cake.NuGet.Tests.csproj @@ -1,7 +1,7 @@  Cake.NuGet.Tests - net461;netcoreapp2.0;netcoreapp3.0 + net461;netcoreapp2.1;netcoreapp3.1 true true @@ -16,11 +16,11 @@ - + - - + + diff --git a/src/Cake.NuGet/Cake.NuGet.csproj b/src/Cake.NuGet/Cake.NuGet.csproj index 459b3687a1..322402d61c 100644 --- a/src/Cake.NuGet/Cake.NuGet.csproj +++ b/src/Cake.NuGet/Cake.NuGet.csproj @@ -19,18 +19,18 @@ - - - - - - - - + + + + + + + + - + All diff --git a/src/Cake.Tests/Cake.Tests.csproj b/src/Cake.Tests/Cake.Tests.csproj index 8997de4187..6d54203150 100644 --- a/src/Cake.Tests/Cake.Tests.csproj +++ b/src/Cake.Tests/Cake.Tests.csproj @@ -1,7 +1,7 @@  Cake.Tests - net461;netcoreapp2.0;netcoreapp3.0 + net461;netcoreapp2.1;netcoreapp3.1 true true @@ -16,11 +16,11 @@ - + - - + + diff --git a/tests/integration/Cake.Common/Tools/DotNetCore/DotNetCoreAliases.cake b/tests/integration/Cake.Common/Tools/DotNetCore/DotNetCoreAliases.cake index b47ac3badf..99f6af7e50 100644 --- a/tests/integration/Cake.Common/Tools/DotNetCore/DotNetCoreAliases.cake +++ b/tests/integration/Cake.Common/Tools/DotNetCore/DotNetCoreAliases.cake @@ -34,7 +34,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreBuild") // Given var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); var project = path.CombineWithFilePath("hwapp/hwapp.csproj"); - var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.0/hwapp.dll"); + var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.1/hwapp.dll"); // When DotNetCoreBuild(project.FullPath); @@ -61,7 +61,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreVSTest") { // Given var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); - var assembly = path.CombineWithFilePath("hwapp.tests/bin/Debug/netcoreapp3.0/hwapp.tests.dll"); + var assembly = path.CombineWithFilePath("hwapp.tests/bin/Debug/netcoreapp3.1/hwapp.tests.dll"); // When DotNetCoreVSTest(assembly.FullPath); @@ -118,7 +118,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreNuGetPush") var nugetServerPath = path.Combine("DotNetCorePush"); var nugetSource = outputPath.CombineWithFilePath("hwapp.1.0.0.nupkg"); var nugetDestination = nugetServerPath.CombineWithFilePath("hwapp.1.0.0.nupkg"); - + EnsureDirectoryExist(outputPath); EnsureDirectoryExist(nugetServerPath); Assert.True(System.IO.File.Exists(nugetSource.FullPath), "Path:" + nugetSource.FullPath); @@ -138,7 +138,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreNuGetDelete") var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); var nugetServerPath = path.Combine("DotNetCorePush"); var nugetDestination = nugetServerPath.CombineWithFilePath("hwapp.1.0.0.nupkg"); - + EnsureDirectoryExist(nugetServerPath); Assert.True(System.IO.File.Exists(nugetDestination.FullPath), "Path:" + nugetDestination.FullPath); @@ -184,7 +184,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreExecute") { // Given var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); - var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.0/hwapp.dll"); + var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.1/hwapp.dll"); // When DotNetCoreExecute(assembly); @@ -197,7 +197,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreClean") // Given var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); var project = path.CombineWithFilePath("hwapp/hwapp.csproj"); - var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.0/hwapp.dll"); + var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.1/hwapp.dll"); Assert.True(System.IO.File.Exists(assembly.FullPath)); // When @@ -214,7 +214,7 @@ Task("Cake.Common.Tools.DotNetCore.DotNetCoreAliases.DotNetCoreMSBuild") // Given var path = Paths.Temp.Combine("./Cake.Common/Tools/DotNetCore"); var project = path.CombineWithFilePath("hwapp/hwapp.csproj"); - var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.0/hwapp.dll"); + var assembly = path.CombineWithFilePath("hwapp/bin/Debug/netcoreapp3.1/hwapp.dll"); // When DotNetCoreMSBuild(project.FullPath); diff --git a/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp.tests/hwapp.tests.csproj b/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp.tests/hwapp.tests.csproj index eb6f146a65..1eb12b6162 100644 --- a/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp.tests/hwapp.tests.csproj +++ b/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp.tests/hwapp.tests.csproj @@ -1,16 +1,16 @@  - netcoreapp3.0 + netcoreapp3.1 false - - - - - + + + + + diff --git a/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp/hwapp.csproj b/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp/hwapp.csproj index 54bf59b8e3..ec73b81db9 100644 --- a/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp/hwapp.csproj +++ b/tests/integration/resources/Cake.Common/Tools/DotNetCore/hwapp/hwapp.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp3.0 + netcoreapp3.1