Skip to content

Commit fee8d5e

Browse files
authored
Support .NET 10 (#72)
* Add net10.0 to target frameworks * Upgrade .NET version in GitHub Actions workflows * Upgrade .NET version in tests/Library*/Library*.csproj
1 parent 15c453a commit fee8d5e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
env:
15-
dotnet-version: "9.0"
15+
dotnet-version: "10.0"
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232

3333
strategy:
3434
matrix:
35-
dotnet-version: ["8.0", "9.0"]
35+
dotnet-version: ["8.0", "9.0", "10.0"]
3636

3737
steps:
3838
- uses: actions/checkout@v4

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 9.0
21+
dotnet-version: 10.0
2222

2323
- name: Build NuGet package for ${{ matrix.project }}
2424
working-directory: src/${{ matrix.project }}

src/SharpFuzz.CommandLine/SharpFuzz.CommandLine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\build\Common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
77
<OutputType>Exe</OutputType>
88
<PackAsTool>true</PackAsTool>
99
<ToolCommandName>sharpfuzz</ToolCommandName>

tests/Library.Fuzz/Library.Fuzz.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
</PropertyGroup>

tests/Library.LibFuzzer/Library.LibFuzzer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
</PropertyGroup>

tests/Library/Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)