Skip to content

Commit f9eb437

Browse files
authored
Merge pull request #328 from dorssel/net10
Use .NET 10 SDK
2 parents 0a38a01 + f8bf4f3 commit f9eb437

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"isRoot": true,
44
"tools": {
55
"docfx": {
6-
"version": "2.78.3",
6+
"version": "2.78.4",
77
"commands": [
88
"docfx"
99
],
1010
"rollForward": false
1111
},
1212
"gitversion.tool": {
13-
"version": "6.4.0",
13+
"version": "6.5.0",
1414
"commands": [
1515
"dotnet-gitversion"
1616
],

.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: dotnet pack --configuration Release --no-build Debounce

Directory.Build.props

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

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

1616
<!-- Use the latest C# Language standard -->
17-
<LangVersion>13.0</LangVersion>
17+
<LangVersion>14.0</LangVersion>
1818
<Nullable>enable</Nullable>
1919
<ImplicitUsings>enable</ImplicitUsings>
2020

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ SPDX-License-Identifier: MIT
99
<!-- all -->
1010
<PackageVersion Include="Dorssel.GitVersion.MsBuild" Version="1.1.1" />
1111
<!-- Debounce -->
12-
<PackageVersion Include="Microsoft.Bcl.TimeProvider" Version="9.0.9" />
12+
<PackageVersion Include="Microsoft.Bcl.TimeProvider" Version="10.0.0" />
1313
<!-- unit tests -->
14-
<PackageVersion Include="Microsoft.Extensions.TimeProvider.Testing" Version="9.9.0" />
14+
<PackageVersion Include="Microsoft.Extensions.TimeProvider.Testing" Version="10.0.0" />
1515
<PackageVersion Include="Moq" Version="4.20.72" />
1616
<!-- blazor -->
17-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.0" />
18-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.0" />
17+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.1" />
18+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.1" />
1919
</ItemGroup>
2020
</Project>

global.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"$schema": "https://json.schemastore.org/global.json",
33
"sdk": {
4-
"version": "9.0.306",
4+
"version": "10.0.100",
55
"allowPrerelease": false,
66
"rollForward": "latestFeature"
77
},
88
"msbuild-sdks": {
99
"Microsoft.Build.NoTargets": "3.7.134",
10-
"MSTest.Sdk": "4.0.0"
10+
"MSTest.Sdk": "4.0.2"
11+
},
12+
"test": {
13+
"runner": "Microsoft.Testing.Platform"
1114
}
1215
}

0 commit comments

Comments
 (0)