File tree Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
- - uses : actions/checkout@v4
17
+ - uses : actions/checkout@v5
18
18
19
19
- name : Setup .NET
20
- uses : actions/setup-dotnet@v4
20
+ uses : actions/setup-dotnet@v5
21
21
with :
22
22
dotnet-version : |
23
23
10.0.x
@@ -28,11 +28,11 @@ jobs:
28
28
29
29
- name : Display dotnet version
30
30
run : dotnet --version
31
-
31
+
32
32
- name : Setup Node.js
33
- uses : actions/setup-node@v4
33
+ uses : actions/setup-node@v5
34
34
with :
35
- node-version : 20
35
+ node-version : 22
36
36
37
37
- name : Restore .NET dependencies
38
38
run : dotnet restore XtermBlazor
Original file line number Diff line number Diff line change @@ -13,20 +13,20 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v4
16
+ - uses : actions/checkout@v5
17
17
18
18
- name : Setup .NET 10
19
- uses : actions/setup-dotnet@v4
19
+ uses : actions/setup-dotnet@v5
20
20
with :
21
21
dotnet-version : 10
22
22
source-url : https://nuget.pkg.github.com/BattlefieldDuck/index.json
23
23
env :
24
24
NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
25
26
26
- name : Setup Node.js
27
- uses : actions/setup-node@v4
27
+ uses : actions/setup-node@v5
28
28
with :
29
- node-version : 20
29
+ node-version : 22
30
30
31
31
- name : Build .NET project
32
32
run : dotnet build XtermBlazor -c Release
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Razor" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net9.0;net8.0;net7.0;net6.0</TargetFrameworks >
4
+ <TargetFrameworks >net10.0; net9.0;net8.0;net7.0;net6.0</TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
44
44
45
45
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0'" >
46
46
<PackageReference Include =" Macross.Json.Extensions" Version =" 3.0.0" />
47
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 6.0.26 " />
47
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 6.0.36 " />
48
48
</ItemGroup >
49
49
50
50
<ItemGroup Condition =" '$(TargetFramework)' == 'net7.0'" >
51
51
<PackageReference Include =" Macross.Json.Extensions" Version =" 3.0.0" />
52
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 7.0.15 " />
52
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 7.0.20 " />
53
53
</ItemGroup >
54
54
55
55
<ItemGroup Condition =" '$(TargetFramework)' == 'net8.0'" >
56
56
<PackageReference Include =" Macross.Json.Extensions" Version =" 3.0.0" />
57
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.1 " />
57
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.20 " />
58
58
</ItemGroup >
59
59
60
60
<ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
61
61
<PackageReference Include =" Macross.Json.Extensions" Version =" 3.0.0" />
62
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 9.0.5" />
62
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 9.0.9" />
63
+ </ItemGroup >
64
+
65
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net10.0'" >
66
+ <PackageReference Include =" Macross.Json.Extensions" Version =" 3.0.0" />
67
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 10.0.0-rc.1.25451.107" />
63
68
</ItemGroup >
64
69
65
70
<ItemGroup >
You can’t perform that action at this time.
0 commit comments