Skip to content

Commit c0b8fa2

Browse files
committed
Use .NET 10 SDK
1 parent cac83f0 commit c0b8fa2

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
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
],

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
- name: Test
152152
run: |
153153
dotnet test --configuration Release --no-build \
154-
-p:TestingPlatformCommandLineArguments="--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml"
154+
--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml
155155
156156
- name: Package
157157
run: |

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
@@ -10,9 +10,9 @@ SPDX-License-Identifier: MIT
1010
<PackageVersion Include="Dorssel.GitVersion.MsBuild" Version="1.1.1" />
1111
<!-- example WebApp -->
1212
<PackageVersion Include="Blazored.LocalStorage" Version="4.5.0" />
13-
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.10" />
14-
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.10" />
15-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.0" />
16-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.0" />
13+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0" />
14+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" />
15+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.1" />
16+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.1" />
1717
</ItemGroup>
1818
</Project>

Examples/WebAssembly/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
1919
<WebPublishMethod>FileSystem</WebPublishMethod>
2020
<_TargetId>Folder</_TargetId>
2121
<SiteUrlToLaunchAfterPublish />
22-
<TargetFramework>net9.0</TargetFramework>
22+
<TargetFramework>net10.0</TargetFramework>
2323
<RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
2424
<RunAOTCompilation>true</RunAOTCompilation>
2525
<ProjectGuid>06165be7-c274-4cd4-ad9a-8bd4f3423b8d</ProjectGuid>

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.1"
9+
"MSTest.Sdk": "4.0.2"
10+
},
11+
"test": {
12+
"runner": "Microsoft.Testing.Platform"
1013
}
1114
}

0 commit comments

Comments
 (0)