Skip to content

Commit 6a7bc52

Browse files
TheSmallPixelclaude
andcommitted
chore: target .NET 8 LTS in action and analyzer
.NET 7 has been out of support since May 2024. Bumps: - TargetFramework net7.0 → net8.0 - actions/checkout v3 → v4 - actions/setup-dotnet v3 → v4 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a0fa317 commit 6a7bc52

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ runs:
3030
using: "composite"
3131
steps:
3232
- name: Check out code
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
persist-credentials: true
3636

3737
- name: Set up .NET
38-
uses: actions/setup-dotnet@v3
38+
uses: actions/setup-dotnet@v4
3939
with:
40-
dotnet-version: "7.0.x"
40+
dotnet-version: "8.0.x"
4141

4242
- name: Build Roslyn tool
4343
run: dotnet build --configuration Release ./tools/CodeAnalysisTool/CodeAnalysisTool.csproj

tools/CodeAnalysisTool/CodeAnalysisTool.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<!-- Change this to whatever .NET version you want, e.g. net6.0, net7.0, etc. -->
5-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
65
</PropertyGroup>
76

87
<ItemGroup>

0 commit comments

Comments
 (0)