Skip to content

Commit 385d223

Browse files
Upgrade to .NET 9
1 parent 4e6319e commit 385d223

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup .NET
1212
uses: actions/setup-dotnet@v4
1313
with:
14-
dotnet-version: 8.0.x
14+
dotnet-version: 9.0.x
1515

1616
- name: Restore
1717
run: dotnet restore

.github/workflows/CodeQL.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup .NET
5454
uses: actions/setup-dotnet@v4
5555
with:
56-
dotnet-version: 8.0.x
56+
dotnet-version: 9.0.x
5757

5858
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5959
# If this step fails, then you should remove it and run the build manually (see below)

.github/workflows/Sonar.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 8.0.x
18+
dotnet-version: 9.0.x
1919

2020
- name: Install Java
2121
uses: actions/setup-java@v4

.github/workflows/nuget.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/setup-dotnet@v4
1616
with:
17-
dotnet-version: 8.0.x
17+
dotnet-version: 9.0.x
1818

1919
- name: Run tests
2020
run: dotnet test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Synchronize GitHub issue labels across repositories
1212

1313
## Requirements
1414

15-
- .NET 8 SDK
15+
- .NET SDK
1616

1717
## Installation
1818

src/GitHubLabelSync.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<PackAsTool>true</PackAsTool>
66
<ToolCommandName>sync-labels</ToolCommandName>
7-
<TargetFramework>net8.0</TargetFramework>
7+
<TargetFramework>net9.0</TargetFramework>
88
<Description>Synchronize GitHub issue labels across repositories</Description>
99
<Authors>ecoAPM LLC</Authors>
1010
<Company>ecoAPM LLC</Company>

test/GitHubLabelSync.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
8+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
99
<PackageReference Include="NSubstitute" Version="5.3.0"/>
1010
<PackageReference Include="xunit" Version="2.9.2"/>
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2"/>

0 commit comments

Comments
 (0)