Skip to content

Commit 1da1bef

Browse files
committed
Update to .NET 10 Preview 5
1 parent 0f64ce0 commit 1da1bef

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

CUIFlavoredPortfolioSite.Test/CUIFlavoredPortfolioSite.Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
@@ -11,11 +11,11 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="ChainingAssertion-NUnit.Bin" Version="4.0.1" />
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1515
<PackageReference Include="Toolbelt.AnsiEscCode.Colorize" Version="1.0.0" />
1616
<PackageReference Include="NUnit" Version="4.3.2" />
1717
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
18-
<PackageReference Include="NUnit.Analyzers" Version="4.7.0">
18+
<PackageReference Include="NUnit.Analyzers" Version="4.8.1">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>

CUIFlavoredPortfolioSite/CUIFlavoredPortfolioSite.csproj

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,25 @@
1010
<ImplicitUsings>enable</ImplicitUsings>
1111

1212
<!--
13+
[2025-05-19]
1314
Since .NET 10 Preview 3, we need to temporarily disable the "InvariantGlobalization" setting
1415
to avoid the exception: "ZLibException: The underlying compression routine could not be loaded correctly."
16+
https://github.com/dotnet/runtime/issues/115720
1517
-->
16-
<!--<InvariantGlobalization>true</InvariantGlobalization>-->
18+
<!--
19+
[2025-05-19] This issue appears to be fixed in .NET 10 Preview 5.
20+
-->
21+
<InvariantGlobalization>true</InvariantGlobalization>
1722

1823
<!--
24+
[2025-05-20]
1925
Since .NET 10 Preview 3, we need to temporarily disable the "UsingBrowserRuntimeWorkload" setting
2026
to avoid the runtime error:
2127
"[MONO] * Assertion at /.../method-builder-ilgen.c:631, condition `<disabled>' not met"
28+
https://github.com/dotnet/runtime/issues/115780
29+
-->
30+
<!--
31+
[2025-05-19] This issue is still present in .NET 10 Preview 5.
2232
-->
2333
<UsingBrowserRuntimeWorkload>false</UsingBrowserRuntimeWorkload>
2434

@@ -38,8 +48,8 @@
3848
</ItemGroup>
3949

4050
<ItemGroup>
41-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-preview.4.*" />
42-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0-preview.4.*" PrivateAssets="all" />
51+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-preview.5.*" />
52+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0-preview.5.*" PrivateAssets="all" />
4353
<PackageReference Include="Figgle" Version="0.5.1" />
4454
<PackageReference Include="CommandLineSwitchParser" Version="1.1.0" />
4555
<PackageReference Include="BlazorWasmPreRendering.Build" Version="6.0.0-preview.2" />

0 commit comments

Comments
 (0)