Skip to content

Commit 7c784d7

Browse files
committed
v.8.0.0 release
1 parent c09247b commit 7c784d7

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

BlazorWasmPreRendering.Build.Test/BlazorWasmPreRendering.Build.Test.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<ItemGroup>
1616
<PackageReference Include="ChainingAssertion-NUnit.Bin" Version="4.0.1" />
1717
<PackageReference Include="NSubstitute" Version="5.3.0" />
18-
<PackageReference Include="NUnit" Version="4.5.1" />
18+
<PackageReference Include="NUnit" Version="4.6.0" />
1919
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
2020
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
2121
<PackageReference Include="Toolbelt.Blazor.HeadElement.ServerPrerendering" Version="7.3.1" />
@@ -42,12 +42,12 @@
4242

4343
<Target Name="_GenerateMiddlewarePackageVersionInfoClass" Inputs="../SampleApps/MiddlewarePackageVersion.props" Outputs="MiddlewarePackageVersionInfo.cs">
4444
<ItemGroup>
45-
<VersionInfoLines Include="namespace $(RootNamespace)%3b%0a"/>
46-
<VersionInfoLines Include="internal static class MiddlewarePackageVersionInfo"/>
47-
<VersionInfoLines Include="{"/>
48-
<VersionInfoLines Include="%20%20%20%20internal static string MiddlewarePackage1Version = &quot;$(MiddlewarePackage1Version)&quot;%3b"/>
49-
<VersionInfoLines Include="%20%20%20%20internal static string MiddlewarePackage2Version = &quot;$(MiddlewarePackage2Version)&quot;%3b"/>
50-
<VersionInfoLines Include="}"/>
45+
<VersionInfoLines Include="namespace $(RootNamespace)%3b%0a" />
46+
<VersionInfoLines Include="internal static class MiddlewarePackageVersionInfo" />
47+
<VersionInfoLines Include="{" />
48+
<VersionInfoLines Include="%20%20%20%20internal static string MiddlewarePackage1Version = &quot;$(MiddlewarePackage1Version)&quot;%3b" />
49+
<VersionInfoLines Include="%20%20%20%20internal static string MiddlewarePackage2Version = &quot;$(MiddlewarePackage2Version)&quot;%3b" />
50+
<VersionInfoLines Include="}" />
5151
</ItemGroup>
5252
<WriteLinesToFile File="MiddlewarePackageVersionInfo.cs" Overwrite="true" Lines="@(VersionInfoLines)"></WriteLinesToFile>
5353
</Target>

SampleApps/BlazorWasmAVP/BlazorWasmAVP.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.25" />
2020
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.25" PrivateAssets="all" />
2121
<PackageReference Include="BlazorWasmAntivirusProtection" Version="2.4.5" />
22-
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0-preview.5" />
22+
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0" />
2323
</ItemGroup>
2424

2525
</Project>

SampleApps/BlazorWasmApp0/BlazorWasmApp0.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0-preview.5" />
12+
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0" />
1313
<PackageReference Include="BlazorWasmBrotliLoader.Build" Version="1.0.3" />
1414
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.25" />
1515
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.25" PrivateAssets="all" />

SampleApps/BlazorWasmApp1/BlazorWasmApp1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0-preview.5" />
16+
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0" />
1717
<PackageReference Include="PublishSPAforGitHubPages.Build" Version="3.0.3" />
1818
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.15" />
1919
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.15" PrivateAssets="all" />

SampleApps/BlazorWasmLazyLoading/BlazorWasmApp/BlazorWasmApp.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="BlazorWasmPreRendering.Build" Version="8.0.0-preview.5" />
14+
<PackageReference Include="BlazorWasmPreRendering.Build" Version="8.0.0" />
1515
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.9" />
1616
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.9" PrivateAssets="all" />
1717
</ItemGroup>

VersionInfo.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>8.0.0-preview.5</Version>
3+
<Version>8.0.0</Version>
44
<Authors>J.Sakamoto</Authors>
55
<Copyright>Copyright © 2021-2026 J.Sakamoto, Mozilla Public License 2.0</Copyright>
66
<Description>When you publish your Blazor Wasm app, this package pre-renders and saves the app as static HTML files in your public folder.</Description>

0 commit comments

Comments
 (0)