Skip to content

Commit 08055d2

Browse files
Update .NET SDK to 9.0.308 (#2816)
* Update .NET SDK Update .NET SDK to version 9.0.308. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-version: 9.0.308 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: polly-updater-bot[bot] <138034000+polly-updater-bot[bot]@users.noreply.github.com> * Suppress IDE0032 Suppress IDE0032 until Stryker supports .NET 10 and C# 14 and #2531 can be merged. * Fix mutation tests Try to prevent stryker from rolling forward to the .NET 10 SDK. --------- Signed-off-by: polly-updater-bot[bot] <138034000+polly-updater-bot[bot]@users.noreply.github.com> Co-authored-by: polly-updater-bot[bot] <138034000+polly-updater-bot[bot]@users.noreply.github.com> Co-authored-by: Martin Costello <[email protected]>
1 parent 0fb7b98 commit 08055d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
<UseArtifactsOutput>true</UseArtifactsOutput>
5+
<!-- HACK Workaround until stryker supports C# 14 (.NET 10) -->
6+
<NoWarn>$(NoWarn);IDE0032</NoWarn>
57
</PropertyGroup>
68
<PropertyGroup Condition=" '$(CI)' == 'true' ">
79
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.307",
3+
"version": "9.0.308",
44
"allowPrerelease": false,
5-
"rollForward": "latestMajor"
5+
"rollForward": "latestMinor"
66
}
77
}

0 commit comments

Comments
 (0)