File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,23 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
# Checkout the code
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
- # Install .NET Core SDK
16
- - name : Setup .NET Core
17
- uses : actions/setup-dotnet@v3
15
+ # Install .NET SDK
16
+ - name : Setup .NET SDK
17
+ uses : actions/setup-dotnet@v4
18
18
with :
19
- dotnet-version : 7 .0.x
19
+ dotnet-version : 8 .0.x
20
20
- name : Install .NET WebAssembly Tools
21
21
run : dotnet workload install wasm-tools
22
22
23
23
# Publish the site
24
24
- name : Publish
25
- run : dotnet publish SampleApps/BlazorWasmApp/BlazorWasmApp.csproj -c:Release -o:public -p:GHPages=true -f:net7 .0
25
+ run : dotnet publish SampleApps/BlazorWasmApp/BlazorWasmApp.csproj -c:Release -o:public -p:GHPages=true -f:net8 .0
26
26
27
27
# Deploy the site
28
28
- name : Deploy
29
- uses : peaceiris/actions-gh-pages@v3
29
+ uses : peaceiris/actions-gh-pages@v4
30
30
with :
31
31
github_token : ${{ secrets.GITHUB_TOKEN }}
32
32
publish_dir : public/wwwroot
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.BlazorWebAssembly" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<InvariantGlobalization >true</InvariantGlobalization >
8
8
<BlazorEnableTimeZoneSupport >false</BlazorEnableTimeZoneSupport >
9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" Blazored.LocalStorage" Version =" 4.3.0" />
13
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 7.0.2" />
14
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 7.0.2" PrivateAssets =" all" />
15
- <PackageReference Include =" PublishSPAforGitHubPages.Build" Version =" 2.0.2" />
12
+ <PackageReference Include =" Blazored.LocalStorage" Version =" 4.5.0" />
13
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 8.0.8" />
14
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 8.0.8" PrivateAssets =" all" />
15
+ <PackageReference Include =" PublishSPAforGitHubPages.Build" Version =" 2.2.0" />
16
+ <PackageReference Include =" System.Text.Json" Version =" 8.0.4" />
16
17
</ItemGroup >
17
18
18
19
<ItemGroup >
19
20
<!-- <ProjectReference Include="..\..\SplitContainer\SplitContainer.csproj" />-->
20
- <PackageReference Include =" Toolbelt.Blazor.SplitContainer" Version =" 1.1.1" />
21
+ <PackageReference Include =" Toolbelt.Blazor.SplitContainer" Version =" 1.1.2. 1" />
21
22
</ItemGroup >
22
23
23
24
</Project >
You can’t perform that action at this time.
0 commit comments