6 Commits

Author SHA1 Message Date
tk
a58f57c3dc chore(release): 2.3.9 2025-11-24 14:06:52 +08:00
bce13faf2f perf: dotnet sdk 升级 (#42)
[skip ci]

Co-authored-by: tk <fiyne1a@dingtalk.com>
2025-11-24 14:06:37 +08:00
6bf53000ef Merge pull request #41 from nsnail/release
chore(release): 2.3.8
2025-07-29 14:10:01 +08:00
tk
0ed999db2d chore(release): 2.3.8 2025-07-29 14:09:46 +08:00
43cf7dd954 perf: nuget update (#40)
[skip ci]

Co-authored-by: tk <fiyne1a@dingtalk.com>
2025-07-29 14:09:35 +08:00
1d5312bdbd Merge pull request #39 from nsnail/release
chore(release): 2.3.7
2025-06-28 11:46:23 +08:00
7 changed files with 18 additions and 12 deletions

View File

@@ -13,11 +13,13 @@ jobs:
filter: tree:0 filter: tree:0
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 9.0.x dotnet-version: 10.0.x
- working-directory: ./src/backend/NSExt - working-directory: ./src/backend/NSExt
run: dotnet build -c Release -f net8.0 run: dotnet build -c Release -f net8.0
- working-directory: ./src/backend/NSExt - working-directory: ./src/backend/NSExt
run: dotnet build -c Release -f net9.0 run: dotnet build -c Release -f net9.0
- working-directory: ./src/backend/NSExt
run: dotnet build -c Release -f net10.0
- working-directory: ./src/backend/NSExt - working-directory: ./src/backend/NSExt
run: dotnet pack -c Release --no-build run: dotnet pack -c Release --no-build
- uses: actions/create-release@v1 - uses: actions/create-release@v1

View File

@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.3.9](https://github.com/nsnail/NSExt/compare/v2.3.8...v2.3.9) (2025-11-24)
### [2.3.8](https://github.com/nsnail/NSExt/compare/v2.3.7...v2.3.8) (2025-07-29)
### [2.3.7](https://github.com/nsnail/NSExt/compare/v2.3.2...v2.3.7) (2025-06-28) ### [2.3.7](https://github.com/nsnail/NSExt/compare/v2.3.2...v2.3.7) (2025-06-28)

View File

@@ -22,7 +22,7 @@
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/nsnail/NSExt.git</RepositoryUrl> <RepositoryUrl>https://github.com/nsnail/NSExt.git</RepositoryUrl>
<RootNamespace>NSExt</RootNamespace> <RootNamespace>NSExt</RootNamespace>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Title>$(AssemblyName)</Title> <Title>$(AssemblyName)</Title>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@@ -19,11 +19,11 @@
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Roslynator.Analyzers" Version="4.13.1"> <PackageReference Include="Roslynator.Analyzers" Version="4.14.1">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.12.0.118525"> <PackageReference Include="SonarAnalyzer.CSharp" Version="10.15.0.120848">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>

View File

@@ -1,9 +1,9 @@
{ {
"version": "2.3.7", "version": "2.3.9",
"devDependencies": { "devDependencies": {
"cz-git": "^1.11.0", "cz-git": "^1.12.0",
"commitizen": "^4.3.1", "commitizen": "^4.3.1",
"prettier": "^3.3.3", "prettier": "^3.6.2",
"standard-version": "^9.5.0" "standard-version": "^9.5.0"
}, },
"config": { "config": {

View File

@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1"/> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
<PackageReference Include="xunit" Version="2.9.3"/> <PackageReference Include="xunit" Version="2.9.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1"> <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
</PackageReference> </PackageReference>

View File

@@ -7,9 +7,9 @@
<Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/> <Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/>
<Import Project="$(SolutionDir)/build/prebuild.targets"/> <Import Project="$(SolutionDir)/build/prebuild.targets"/>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0"/> <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="5.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.6"/> <PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0"/>
<PackageReference Include="System.IO.Hashing" Version="9.0.6"/> <PackageReference Include="System.IO.Hashing" Version="10.0.0"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Update="*.json"> <None Update="*.json">