Skip to content

Commit

Permalink
update AntDesign 1.0 RC2 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderJames authored Oct 11, 2024
1 parent 5176895 commit dc79aab
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 48 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,21 @@ jobs:
with:
persist-credentials: false

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: 5.0.100

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.101

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.100

- uses: actions/setup-dotnet@v1
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.100
dotnet-quality: 'preview'
dotnet-version: '9.0.x'

- uses: actions/setup-node@v1
with:
Expand Down
27 changes: 13 additions & 14 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,21 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: 5.0.100

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.101

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.100

- uses: actions/setup-dotnet@v1
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.100
dotnet-quality: 'preview'
dotnet-version: '9.0.x'

- uses: actions/setup-node@v1
with:
Expand Down
31 changes: 13 additions & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,21 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.300

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.101

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.100

- uses: actions/setup-dotnet@v1
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.100
dotnet-quality: 'preview'
dotnet-version: '9.0.x'

- uses: actions/setup-node@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions src/layout/src/AntDesign.ProLayout.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8;net9</TargetFrameworks>
<LangVersion>latest</LangVersion>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
Expand All @@ -26,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="AntDesign" Version="1.0.0-rc.1" />
<PackageReference Include="AntDesign" Version="1.0.0-rc.2" />
</ItemGroup>

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

0 comments on commit dc79aab

Please sign in to comment.