Skip to content

Commit

Permalink
Fix libraries fuzzing pipeline (#107048)
Browse files Browse the repository at this point in the history
* Fix fuzzing builds for .NET 10

* Keep TFM at 9.0
  • Loading branch information
MihaZupan committed Aug 29, 2024
1 parent 060ad2d commit fbf4672
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libraries/Fuzzing/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<NetCoreAppCurrentVersion>9.0</NetCoreAppCurrentVersion>
<NetCoreAppCurrentVersion>10.0</NetCoreAppCurrentVersion>
<NetCoreAppCurrent>net$(NetCoreAppCurrentVersion)</NetCoreAppCurrent>
<ProductVersion>$(NetCoreAppCurrentVersion).0</ProductVersion>
<TestUtilities>..\..\Common\tests\TestUtilities</TestUtilities>
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/Fuzzing/DotnetFuzzing/DotnetFuzzing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(NetCoreAppCurrent)-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<PublishSelfContained>true</PublishSelfContained>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
1 change: 1 addition & 0 deletions src/libraries/Fuzzing/nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<clear />
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
<add key="dotnet9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" />
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
<add key="local checked" value="../../../artifacts/packages/Checked/Shipping" />
<add key="local debug" value="../../../artifacts/packages/Debug/Shipping" />
</packageSources>
Expand Down

0 comments on commit fbf4672

Please sign in to comment.