Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed support for .NET Core 2.2 #367

Merged
merged 4 commits into from
Jan 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions .pipelines/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,21 @@ variables:

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'
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'
Expand Down Expand Up @@ -77,7 +70,7 @@ steps:
failTaskOnFailedTests: true

- task: DotNetCoreCLI@2
displayName: 'Create NuGet package'
displayName: 'Create NuGet packages'
inputs:
command: pack
packagesToPack: 'src/**/*.csproj'
Expand Down
2 changes: 0 additions & 2 deletions JWT.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
28 changes: 0 additions & 28 deletions tests/JWT.Tests.NetCore2/JWT.Tests.NetCore2.csproj

This file was deleted.