Skip to content

Commit 3398820

Browse files
authored
feat(TargetFramework): bump vesion 10.0.0 (#673)
* chore: bump version 10.0.0 * chore: 更新全局配置 * chore: 更新中间件配置 * chore: 统一版本号 * chore: 更新依赖 * chore: 更新版本 * chore: 移除冗余依赖 * chore: 增加多框架支持 * chore: 更新单元测试框架 * chore: 增加多框架支持 * refactor: 更新项目配置 * chore: 更新实现防止报错 * chore: 更新解决方案配置
1 parent 4f0b0e4 commit 3398820

92 files changed

Lines changed: 124 additions & 531 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

BootstrapBlazor.Extensions.slnx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
</Folder>
77
<Folder Name="/configurations/">
88
<File Path=".gitignore" />
9-
<File Path="Directory.Build.props" />
109
<File Path="exclusion.dic" />
1110
</Folder>
11+
<Folder Name="/props/">
12+
<File Path="Directory.Build.props" />
13+
</Folder>
1214
<Folder Name="/src/" />
1315
<Folder Name="/src/components/">
1416
<Project Path="src/components/BootstrapBlazor.AntDesignIcon/BootstrapBlazor.AntDesignIcon.csproj" />

src/Directory.Build.props

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Import Project=".\SourceLink.targets" />
77

88
<PropertyGroup>
9-
<Version>9.0.0</Version>
9+
<Version>10.0.0</Version>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
@@ -22,7 +22,12 @@
2222
</PropertyGroup>
2323

2424
<PropertyGroup>
25-
<BBVersion>9.0.0</BBVersion>
25+
<BBVersion>9.*</BBVersion>
26+
<NET6Version>6.0.*</NET6Version>
27+
<NET7Version>7.0.*</NET7Version>
28+
<NET8Version>8.0.*</NET8Version>
29+
<NET9Version>9.0.*</NET9Version>
30+
<NET10Version>10.0.0-rc*</NET10Version>
2631
</PropertyGroup>
2732

2833
<ItemGroup>

src/Frameworks.props

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<Project>
22

3-
<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
5-
</PropertyGroup>
6-
7-
<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
3+
<PropertyGroup>
84
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
95
</PropertyGroup>
106

src/components/BootstrapBlazor.AntDesignIcon/BootstrapBlazor.AntDesignIcon.csproj

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

3-
<PropertyGroup>
4-
<Version>9.0.3</Version>
5-
</PropertyGroup>
6-
73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Icon</PackageTags>
95
<Description>Bootstrap UI components extensions of AntDesign Icon</Description>

src/components/BootstrapBlazor.Authenticator/BootstrapBlazor.Authenticator.csproj

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

3-
<PropertyGroup>
4-
<Version>9.0.0</Version>
5-
</PropertyGroup>
6-
73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor WebAssembly wasm Authenticator 2FA MFA OTP TOTP HOTP</PackageTags>
95
<Description>Bootstrap UI components extensions of Authenticator</Description>
106
<RootNamespace>BootstrapBlazor.Components</RootNamespace>
117
</PropertyGroup>
128

139
<ItemGroup>
14-
<PackageReference Include="BootstrapBlazor" Version="9.5.12" />
10+
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
1511
<PackageReference Include="Otp.NET" Version="1.4.0" />
1612
</ItemGroup>
1713

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

3-
<PropertyGroup>
4-
<Version>9.0.1</Version>
5-
</PropertyGroup>
6-
73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Topology FlowChart</PackageTags>
95
<Description>Bootstrap UI components extensions of Azure OpenAI service</Description>
@@ -14,12 +10,4 @@
1410
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
1511
</ItemGroup>
1612

17-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
18-
<PackageReference Include="System.Text.Json" Version="9.0.2" />
19-
</ItemGroup>
20-
21-
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
22-
<PackageReference Include="System.Text.Json" Version="9.0.2" />
23-
</ItemGroup>
24-
2513
</Project>

src/components/BootstrapBlazor.AzureOpenAI/Services/AzureOpenAIOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
1+
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

src/components/BootstrapBlazor.AzureSpeech/BootstrapBlazor.AzureSpeech.csproj

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

3-
<PropertyGroup>
4-
<Version>9.0.0</Version>
5-
</PropertyGroup>
6-
73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor Azure WebAssembly wasm Speech Components</PackageTags>
95
<Description>Bootstrap UI components extensions of Azure Speech</Description>
Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Razor">
2-
3-
<PropertyGroup>
4-
<Version>9.0.1</Version>
5-
</PropertyGroup>
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
62

73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor Azure WebAssembly wasm Translator Components</PackageTags>
@@ -15,12 +11,4 @@
1511
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
1612
</ItemGroup>
1713

18-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
19-
<PackageReference Include="System.Text.Json" Version="9.0.2" />
20-
</ItemGroup>
21-
22-
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
23-
<PackageReference Include="System.Text.Json" Version="9.0.2" />
24-
</ItemGroup>
25-
2614
</Project>
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

3-
<PropertyGroup>
4-
<Version>9.0.0</Version>
5-
</PropertyGroup>
6-
73
<PropertyGroup>
84
<PackageTags>Bootstrap Blazor Baidu WebAssembly wasm Ocr Components</PackageTags>
95
<Description>Bootstrap UI components extensions of Baidu Ocr</Description>
@@ -13,7 +9,6 @@
139
<ItemGroup>
1410
<PackageReference Include="Baidu.AI" Version="4.15.16" />
1511
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
16-
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
1712
</ItemGroup>
1813

1914
</Project>

0 commit comments

Comments
 (0)