Skip to content

Commit e4e1076

Browse files
authored
fix(core): update TargetFramework to net10.0 to match NuGet package requirements (#95)
BlazorMVU.Core targeted net9.0 but referenced Microsoft.AspNetCore.Components.Web 10.0.3 and Microsoft.JSInterop 10.0.3 which only support net10.0, causing CI to fail with NU1202 restore errors. Aligns with Demo and Tests projects already on net10.0.
1 parent b91849f commit e4e1076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BlazorMVU.Core/BlazorMVU.Core.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<LangVersion>12</LangVersion>
7+
<LangVersion>13</LangVersion>
88
<RootNamespace>BlazorMVU</RootNamespace>
99

1010
<!-- NuGet Package Properties -->

0 commit comments

Comments
 (0)