Skip to content

Commit 02b1c7f

Browse files
committed
Bump .NET SDK and update package versions
Switch CI and CodeQL workflows and global.json to .NET 10.0 SDK and align project package versions. Updated setup-dotnet to 10.0.x in workflows and set sdk.version to 10.0.0 in global.json. Updated sample and library packages: MAUI packages (10.0.20 -> 10.0.40), Blazor WebAssembly packages (10.0.2 -> 10.0.3), logging and devserver bumps, and Microsoft.AspNetCore.Components.Web version bumps for net8/net9/net10. Also upgraded Microsoft.SourceLink.GitHub to 11.0.100-preview.1.26104.118 across projects to match the updated SDK/tooling.
1 parent c51f235 commit 02b1c7f

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup .NET
3232
uses: actions/setup-dotnet@v5
3333
with:
34-
dotnet-version: 11.0.x
34+
dotnet-version: 10.0.x
3535
dotnet-quality: preview
3636

3737
- name: Restore .NET workloads

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup .NET
6262
uses: actions/setup-dotnet@v5
6363
with:
64-
dotnet-version: 11.0.x
64+
dotnet-version: 10.0.x
6565
dotnet-quality: preview
6666

6767
- name: Restore .NET workloads

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "11.0.0",
3+
"version": "10.0.0",
44
"allowPrerelease": true,
55
"rollForward": "latestMajor"
66
}

samples/Blazouter.Hybrid.Sample/Blazouter.Hybrid.Sample.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
</ItemGroup>
6161

6262
<ItemGroup>
63-
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.20" />
64-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.1" />
65-
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="10.0.20" />
63+
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.40" />
64+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.3" />
65+
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="10.0.40" />
6666
</ItemGroup>
6767

6868
<ItemGroup>

samples/Blazouter.Web.Sample/Blazouter.Web.Client.Sample/Blazouter.Web.Client.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.2" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.3" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

samples/Blazouter.Web.Sample/Blazouter.Web.Sample/Blazouter.Web.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.2" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.3" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

samples/Blazouter.WebAssembly.Sample/Blazouter.WebAssembly.Sample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.2" />
15-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.2" PrivateAssets="all" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.3" />
15+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.3" PrivateAssets="all" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

src/Blazouter.Hybrid/Blazouter.Hybrid.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989

9090
<ItemGroup>
9191
<PackageReference Include="Microsoft.SourceLink.GitHub">
92-
<Version>8.0.0</Version>
92+
<Version>11.0.100-preview.1.26104.118</Version>
9393
<PrivateAssets>All</PrivateAssets>
9494
</PackageReference>
9595
</ItemGroup>
@@ -100,7 +100,7 @@
100100

101101
<ItemGroup>
102102
<PackageReference Condition="$(TargetFramework.StartsWith('net9'))" Include="Microsoft.Maui.Controls" Version="9.0.120" />
103-
<PackageReference Condition="$(TargetFramework.StartsWith('net10'))" Include="Microsoft.Maui.Controls" Version="10.0.20" />
103+
<PackageReference Condition="$(TargetFramework.StartsWith('net10'))" Include="Microsoft.Maui.Controls" Version="10.0.40" />
104104
</ItemGroup>
105105

106106
<ItemGroup>

src/Blazouter.Server/Blazouter.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
<ItemGroup>
7575
<PackageReference Include="Microsoft.SourceLink.GitHub">
76-
<Version>8.0.0</Version>
76+
<Version>11.0.100-preview.1.26104.118</Version>
7777
<PrivateAssets>All</PrivateAssets>
7878
</PackageReference>
7979
</ItemGroup>

src/Blazouter.Web/Blazouter.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
<ItemGroup>
7575
<PackageReference Include="Microsoft.SourceLink.GitHub">
76-
<Version>8.0.0</Version>
76+
<Version>11.0.100-preview.1.26104.118</Version>
7777
<PrivateAssets>All</PrivateAssets>
7878
</PackageReference>
7979
</ItemGroup>

0 commit comments

Comments
 (0)