mirror of
https://github.com/nsnail/ns-ext.git
synced 2025-11-29 03:15:48 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a58f57c3dc | |||
| bce13faf2f | |||
| 6bf53000ef |
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -13,11 +13,13 @@ jobs:
|
||||
filter: tree:0
|
||||
- uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 9.0.x
|
||||
dotnet-version: 10.0.x
|
||||
- working-directory: ./src/backend/NSExt
|
||||
run: dotnet build -c Release -f net8.0
|
||||
- working-directory: ./src/backend/NSExt
|
||||
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
|
||||
run: dotnet pack -c Release --no-build
|
||||
- uses: actions/create-release@v1
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
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)
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<RepositoryUrl>https://github.com/nsnail/NSExt.git</RepositoryUrl>
|
||||
<RootNamespace>NSExt</RootNamespace>
|
||||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
||||
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
||||
<Title>$(AssemblyName)</Title>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Roslynator.Analyzers" Version="4.14.0">
|
||||
<PackageReference Include="Roslynator.Analyzers" Version="4.14.1">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"version": "2.3.8",
|
||||
"version": "2.3.9",
|
||||
"devDependencies": {
|
||||
"cz-git": "^1.11.0",
|
||||
"cz-git": "^1.12.0",
|
||||
"commitizen": "^4.3.1",
|
||||
"prettier": "^3.3.3",
|
||||
"prettier": "^3.6.2",
|
||||
"standard-version": "^9.5.0"
|
||||
},
|
||||
"config": {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<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.runner.visualstudio" Version="3.1.3">
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
<Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/>
|
||||
<Import Project="$(SolutionDir)/build/prebuild.targets"/>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0"/>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.7"/>
|
||||
<PackageReference Include="System.IO.Hashing" Version="9.0.7"/>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="5.0.0"/>
|
||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0"/>
|
||||
<PackageReference Include="System.IO.Hashing" Version="10.0.0"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Update="*.json">
|
||||
|
||||
Reference in New Issue
Block a user