From 0f943564a149b0e593578417a2c462ef4e5226de Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Fri, 31 Dec 2021 17:17:58 -0800 Subject: [PATCH 1/4] Update build.yml --- .pipelines/build.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.pipelines/build.yml b/.pipelines/build.yml index e6175fd5c..c036339b1 100644 --- a/.pipelines/build.yml +++ b/.pipelines/build.yml @@ -15,13 +15,6 @@ variables: buildPlatform: 'Any CPU' steps: -- task: UseDotNet@2 - displayName: 'Use .NET Core 2.2.x' - inputs: - packageType: sdk - version: '2.2.x' - installationPath: '$(Agent.ToolsDirectory)/dotnet' - - task: UseDotNet@2 displayName: 'Use .NET Core 3.1.x' inputs: From 347a4efac37d2260702fcd401e3630dae4fc485a Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Fri, 31 Dec 2021 17:18:35 -0800 Subject: [PATCH 2/4] Delete tests/JWT.Tests.NetCore2 directory --- .../JWT.Tests.NetCore2.csproj | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/JWT.Tests.NetCore2/JWT.Tests.NetCore2.csproj diff --git a/tests/JWT.Tests.NetCore2/JWT.Tests.NetCore2.csproj b/tests/JWT.Tests.NetCore2/JWT.Tests.NetCore2.csproj deleted file mode 100644 index 209499fa3..000000000 --- a/tests/JWT.Tests.NetCore2/JWT.Tests.NetCore2.csproj +++ /dev/null @@ -1,28 +0,0 @@ - - - - netcoreapp2.1 - JWT.Tests - - - - - %(RecursiveDir)%(Filename)%(Extension) - - - Properties\AssemblyInfo.cs - - - - - - - - - - - - - - - From 7b168ef19ab538ce8c09ebf7be6ae376ae572535 Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Fri, 31 Dec 2021 17:19:01 -0800 Subject: [PATCH 3/4] Update JWT.sln --- JWT.sln | 2 -- 1 file changed, 2 deletions(-) diff --git a/JWT.sln b/JWT.sln index 2615263f6..abf190a14 100644 --- a/JWT.sln +++ b/JWT.sln @@ -24,8 +24,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT", "src\JWT\JWT.csproj", EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Common", "tests\JWT.Tests.Common\JWT.Tests.Common.csproj", "{5D0282D5-9CC4-4D42-A3F0-E18270F92184}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.NetCore2", "tests\JWT.Tests.NetCore2\JWT.Tests.NetCore2.csproj", "{2433BAFA-2C09-44F4-A172-E0F7CA6688C3}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.NetCore3", "tests\JWT.Tests.NetCore3\JWT.Tests.NetCore3.csproj", "{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Net35", "tests\JWT.Tests.Net35\JWT.Tests.Net35.csproj", "{30D3D291-2C79-4CDD-94D3-C834A4995149}" From d0073c6b28a6bce8c5a0590ab516e52c1dc44220 Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Fri, 31 Dec 2021 17:20:46 -0800 Subject: [PATCH 4/4] Update build.yml --- .pipelines/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pipelines/build.yml b/.pipelines/build.yml index c036339b1..b175f8d23 100644 --- a/.pipelines/build.yml +++ b/.pipelines/build.yml @@ -16,21 +16,21 @@ variables: steps: - task: UseDotNet@2 - displayName: 'Use .NET Core 3.1.x' + displayName: 'Install .NET Core 3.1.x' inputs: packageType: sdk version: '3.1.x' installationPath: '$(Agent.ToolsDirectory)/dotnet' - task: UseDotNet@2 - displayName: 'Use .NET 5.0.x' + displayName: 'Install .NET 5.0.x' inputs: packageType: sdk version: '5.0.x' installationPath: '$(Agent.ToolsDirectory)/dotnet' - task: UseDotNet@2 - displayName: 'Use .NET 6.0.x' + displayName: 'Install .NET 6.0.x' inputs: packageType: sdk version: '6.0.x' @@ -70,7 +70,7 @@ steps: failTaskOnFailedTests: true - task: DotNetCoreCLI@2 - displayName: 'Create NuGet package' + displayName: 'Create NuGet packages' inputs: command: pack packagesToPack: 'src/**/*.csproj'