Skip to content

Commit dc79aab

Browse files
authored
update AntDesign 1.0 RC2 (#110)
1 parent 5176895 commit dc79aab

File tree

4 files changed

+41
-48
lines changed

4 files changed

+41
-48
lines changed

.github/workflows/package.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,21 @@ jobs:
2020
with:
2121
persist-credentials: false
2222

23-
- name: Setup .NET Core
24-
uses: actions/setup-dotnet@v1
23+
- name: Setup .NET SDKs
24+
uses: actions/setup-dotnet@v4
2525
with:
26-
dotnet-version: 5.0.100
27-
28-
- uses: actions/setup-dotnet@v1
29-
with:
30-
dotnet-version: 6.0.101
31-
32-
- uses: actions/setup-dotnet@v1
33-
with:
34-
dotnet-version: 7.0.100
35-
36-
- uses: actions/setup-dotnet@v1
26+
dotnet-version: |
27+
3.1.x
28+
5.0.x
29+
6.0.x
30+
7.0.x
31+
8.0.x
32+
33+
- name: Setup .NET 9
34+
uses: actions/setup-dotnet@v4
3735
with:
38-
dotnet-version: 8.0.100
36+
dotnet-quality: 'preview'
37+
dotnet-version: '9.0.x'
3938

4039
- uses: actions/setup-node@v1
4140
with:

.github/workflows/pr-checks.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,21 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v1
1414

15-
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
15+
- name: Setup .NET SDKs
16+
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 5.0.100
19-
20-
- uses: actions/setup-dotnet@v1
21-
with:
22-
dotnet-version: 6.0.101
23-
24-
- uses: actions/setup-dotnet@v1
25-
with:
26-
dotnet-version: 7.0.100
27-
28-
- uses: actions/setup-dotnet@v1
18+
dotnet-version: |
19+
3.1.x
20+
5.0.x
21+
6.0.x
22+
7.0.x
23+
8.0.x
24+
25+
- name: Setup .NET 9
26+
uses: actions/setup-dotnet@v4
2927
with:
30-
dotnet-version: 8.0.100
28+
dotnet-quality: 'preview'
29+
dotnet-version: '9.0.x'
3130

3231
- uses: actions/setup-node@v1
3332
with:

.github/workflows/release.yml

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,21 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818

19-
- name: Setup .NET Core
20-
uses: actions/setup-dotnet@v1
19+
- name: Setup .NET SDKs
20+
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 3.1.300
23-
24-
- uses: actions/setup-dotnet@v1
25-
with:
26-
dotnet-version: 5.0.100
27-
28-
- uses: actions/setup-dotnet@v1
29-
with:
30-
dotnet-version: 6.0.101
31-
32-
- uses: actions/setup-dotnet@v1
33-
with:
34-
dotnet-version: 7.0.100
35-
36-
- uses: actions/setup-dotnet@v1
22+
dotnet-version: |
23+
3.1.x
24+
5.0.x
25+
6.0.x
26+
7.0.x
27+
8.0.x
28+
29+
- name: Setup .NET 9
30+
uses: actions/setup-dotnet@v4
3731
with:
38-
dotnet-version: 8.0.100
32+
dotnet-quality: 'preview'
33+
dotnet-version: '9.0.x'
3934

4035
- uses: actions/setup-node@v1
4136
with:

src/layout/src/AntDesign.ProLayout.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8;net9</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<OutputType>Library</OutputType>
77
<IsPackable>true</IsPackable>
@@ -26,7 +26,7 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="AntDesign" Version="1.0.0-rc.1" />
29+
<PackageReference Include="AntDesign" Version="1.0.0-rc.2" />
3030
</ItemGroup>
3131

3232
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' And '$(SolutionDir)'==''">

0 commit comments

Comments
 (0)