Skip to content

Commit fe9ab47

Browse files
authored
Merge pull request #45 from DarthAffe/net9
Added .net9 build target
2 parents 527149f + b9a2f98 commit fe9ab47

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed
Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
using System.Configuration;
2-
using System.Data;
3-
using System.Windows;
1+
using System.Windows;
42

5-
namespace ImageCreationUI
6-
{
7-
/// <summary>
8-
/// Interaction logic for App.xaml
9-
/// </summary>
10-
public partial class App : Application
11-
{
12-
}
3+
namespace ImageCreationUI;
134

14-
}
5+
public partial class App : Application;

Examples/ImageCreationUI/ImageCreationUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net9.0-windows</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<UseWPF>true</UseWPF>

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-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77

0 commit comments

Comments
 (0)