Skip to content

Commit 2fdf255

Browse files
authored
Merge pull request #76 from Mincka/feat/migrate-to-dotnet8-lts
Migration to .NET 8.0 LTS
2 parents 083f3ac + e324ebb commit 2fdf255

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
- name: Checkout repository
4141
uses: actions/checkout@v3
4242

43+
- name: Setup .NET
44+
uses: actions/setup-dotnet@v3
45+
with:
46+
dotnet-version: '8.0.x'
47+
4348
# Initializes the CodeQL tools for scanning.
4449
- name: Initialize CodeQL
4550
uses: github/codeql-action/init@v2

AspNetCoreCracker/AspNetCoreCracker.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<Version>1.1.0</Version>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="CommandLineParser" Version="2.9.1" />
11-
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
12-
<PackageReference Include="Microsoft.AspNetCore.Cryptography.Internal" Version="7.0.3" />
13-
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="6.0.5" />
10+
<PackageReference Include="CommandLineParser" Version="2.8.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Cryptography.Internal" Version="8.0.16" />
12+
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="8.0.16" />
1413
</ItemGroup>
1514

1615
<ItemGroup>

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.0",
4+
"rollForward": "latestFeature"
5+
}
6+
}

0 commit comments

Comments
 (0)