Skip to content

Commit d4fbc31

Browse files
authored
Merge pull request #219 from dorssel/net10
Use .NET 10 SDK
2 parents 61def7c + 5d0d18e commit d4fbc31

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"gitversion.tool": {
6-
"version": "6.4.0",
6+
"version": "6.5.0",
77
"commands": [
88
"dotnet-gitversion"
99
],
@@ -17,7 +17,7 @@
1717
"rollForward": false
1818
},
1919
"docfx": {
20-
"version": "2.78.3",
20+
"version": "2.78.4",
2121
"commands": [
2222
"docfx"
2323
],

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Test
5353
run: |
5454
dotnet test --configuration Release --no-build \
55-
-p:TestingPlatformCommandLineArguments="--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml"
55+
--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml
5656
5757
- name: Package
5858
run: |

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ SPDX-License-Identifier: MIT
1313
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' != 'true'">false</ContinuousIntegrationBuild>
1414

1515
<!-- Use the latest .NET SDK -->
16-
<MainTargetFramework>net9.0</MainTargetFramework>
16+
<MainTargetFramework>net10.0</MainTargetFramework>
1717

1818
<!-- Use the latest C# language standard -->
19-
<LangVersion>13.0</LangVersion>
19+
<LangVersion>14.0</LangVersion>
2020
<Nullable>enable</Nullable>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SPDX-License-Identifier: MIT
99
<!-- all -->
1010
<PackageVersion Include="Dorssel.GitVersion.MsBuild" Version="1.1.1" />
1111
<!-- netstandard2.0 -->
12-
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.9" />
13-
<PackageVersion Include="Microsoft.Bcl.Memory" Version="9.0.9" />
12+
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0" />
13+
<PackageVersion Include="Microsoft.Bcl.Memory" Version="10.0.0" />
1414
</ItemGroup>
1515
</Project>

global.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"sdk": {
3-
"version": "9.0.306",
3+
"version": "10.0.100",
44
"allowPrerelease": false,
55
"rollForward": "latestFeature"
66
},
77
"msbuild-sdks": {
88
"Microsoft.Build.NoTargets": "3.7.134",
9-
"MSTest.Sdk": "4.0.0"
9+
"MSTest.Sdk": "4.0.2"
10+
},
11+
"test": {
12+
"runner": "Microsoft.Testing.Platform"
1013
}
1114
}

0 commit comments

Comments
 (0)