Skip to content

Commit b147a7a

Browse files
authored
Merge pull request #63 from DarthAffe/net10
Added .net 10 target framework
2 parents 82f25d1 + 020a3f0 commit b147a7a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Install .NET Core
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
2424
dotnet-version: |
25+
10.0.x
2526
9.0.x
2627
8.0.x
2728
@@ -49,7 +50,7 @@ jobs:
4950
with:
5051
tag_name: ${{ github.event.inputs.version }}
5152
generate_release_notes: true
52-
files: StableDiffusion.NET/bin/Release/net9.0/StableDiffusion.NET.dll
53+
files: StableDiffusion.NET/bin/Release/net10.0/StableDiffusion.NET.dll
5354

5455
- name: Nuget Push
5556
id: nuget_push

StableDiffusion.NET/StableDiffusion.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77

0 commit comments

Comments
 (0)