Skip to content

Commit

Permalink
Use .Net 9 release version and bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mschessler authored and Maxim Schessler committed Jan 3, 2025
1 parent 03a381c commit bb72aea
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: ["master"]

env:
dotnet-version: 8.0
dotnet-version: 9.0

jobs:
AFL:
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-libfuzzer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ New-Item -Path $corpus -ItemType Directory
dotnet publish src/SharpFuzz.CommandLine/SharpFuzz.CommandLine.csproj `
--output out `
--configuration release `
--framework net8.0
--framework net9.0

& scripts/fuzz-libfuzzer.ps1 `
-libFuzzer "./$libFuzzer" `
Expand Down
2 changes: 1 addition & 1 deletion scripts/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ New-Item -Path "corpus/test" -ItemType File -Force -Value "W"
dotnet publish src/SharpFuzz.CommandLine/SharpFuzz.CommandLine.csproj `
--output out `
--configuration release `
--framework net8.0
--framework net9.0

& scripts/fuzz.ps1 `
-project tests/Library.Fuzz/Library.Fuzz.csproj `
Expand Down
4 changes: 2 additions & 2 deletions src/SharpFuzz.CommandLine/SharpFuzz.CommandLine.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\build\Common.props" />

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>sharpfuzz</ToolCommandName>
Expand Down
6 changes: 3 additions & 3 deletions src/SharpFuzz/SharpFuzz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="dnlib" Version="3.6.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="dnlib" Version="4.4.0" />
<PackageReference Include="System.Memory" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Library.Fuzz/Library.Fuzz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Library.LibFuzzer/Library.LibFuzzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Library/Library.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit bb72aea

Please sign in to comment.