Skip to content

Commit 18ecb15

Browse files
committed
Update AntDesign 0.16.2 and .NET 8 (#79)
1 parent 53cb410 commit 18ecb15

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

.github/workflows/package.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
with:
3434
dotnet-version: 7.0.100
3535

36+
- uses: actions/setup-dotnet@v1
37+
with:
38+
dotnet-version: 8.0.100
39+
3640
- uses: actions/setup-node@v1
3741
with:
3842
node-version: '10.x'

.github/workflows/pr-checks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
with:
2626
dotnet-version: 7.0.100
2727

28+
- uses: actions/setup-dotnet@v1
29+
with:
30+
dotnet-version: 8.0.100
31+
2832
- uses: actions/setup-node@v1
2933
with:
3034
node-version: '10.x'

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
with:
3434
dotnet-version: 7.0.100
3535

36+
- uses: actions/setup-dotnet@v1
37+
with:
38+
dotnet-version: 8.0.100
39+
3640
- uses: actions/setup-node@v1
3741
with:
3842
node-version: '10.x'

src/layout/src/AntDesign.ProLayout.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;net5;net6;net7</TargetFrameworks>
5-
<LangVersion>11.0</LangVersion>
6-
<OutputType>Library</OutputType>
4+
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8</TargetFrameworks>
5+
<LangVersion>11.0</LangVersion>
6+
<OutputType>Library</OutputType>
77
<IsPackable>true</IsPackable>
88
<RazorLangVersion>3.0</RazorLangVersion>
99
<Description>Ant Design Pro components for Blazor</Description>
@@ -16,14 +16,15 @@
1616
<Copyright>James Yeung</Copyright>
1717
<Authors>James Yeung</Authors>
1818
<PackageIcon>logo.png</PackageIcon>
19+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1920
</PropertyGroup>
2021

2122
<ItemGroup>
2223
<None Include="logo.png" Pack="true" PackagePath="" />
2324
</ItemGroup>
2425

2526
<ItemGroup>
26-
<PackageReference Include="AntDesign" Version="0.16.0" />
27+
<PackageReference Include="AntDesign" Version="0.16.2" />
2728
</ItemGroup>
2829

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

0 commit comments

Comments
 (0)