Skip to content

Commit 05f4b83

Browse files
authored
Merge pull request #97 from codemonkey85/dev
Upgrade to .NET 10
2 parents 9d41fce + c3d2730 commit 05f4b83

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
1+
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<OverrideHtmlAssetPlaceholders>true</OverrideHtmlAssetPlaceholders>
78
</PropertyGroup>
89

910
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
@@ -12,9 +13,9 @@
1213

1314
<ItemGroup>
1415
<PackageReference Include="Humanizer" Version="2.14.1"/>
15-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.10"/>
16-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.10" PrivateAssets="all"/>
17-
<PackageReference Include="MudBlazor" Version="8.13.0"/>
16+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0"/>
17+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" PrivateAssets="all"/>
18+
<PackageReference Include="MudBlazor" Version="8.14.0"/>
1819
</ItemGroup>
1920

2021
</Project>

ā€ŽAboutMe/Wasm/wwwroot/index.htmlā€Ž

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@
2222
rel="me"/>
2323
<link href="https://vernissage.photos/@codemonkey85"
2424
rel="me"/>
25+
<link id="webassembly"
26+
rel="preload"/>
27+
<script type="importmap"></script>
2528
<!-- If you add any scoped CSS files, uncomment the following to load them
26-
<link href="AboutMe.Wasm.styles.css" rel="stylesheet" /> -->
29+
<link href="AboutMe.Wasm.styles.css" rel="stylesheet"/> -->
2730
</head>
2831

2932
<body>
@@ -42,10 +45,10 @@
4245
<div id="blazor-error-ui">
4346
An unhandled error has occurred.
4447
<a class="reload"
45-
href="">Reload</a>
46-
<a class="dismiss">šŸ—™</a>
48+
href=".">Reload</a>
49+
<span class="dismiss">šŸ—™</span>
4750
</div>
48-
<script src="_framework/blazor.webassembly.js"></script>
51+
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
4952
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
5053
</body>
5154

ā€Žglobal.jsonā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"sdk": {
33
"allowPrerelease": false,
44
"rollForward": "latestMinor",
5-
"version": "9.0.306"
5+
"version": "10.0.100"
66
}
77
}

0 commit comments

Comments
Ā (0)
⚔