Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 656bf3f

Browse files
committed
Version 0.14.0
1 parent 3363bbd commit 656bf3f

File tree

7 files changed

+21
-20
lines changed

7 files changed

+21
-20
lines changed

OnnxStack.Console/OnnxStack.Console.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.12.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
18+
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
19+
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
1920
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-DirectML' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
2021
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-DirectML' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
2122
</ItemGroup>

OnnxStack.Console/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using Microsoft.Extensions.Logging;
44
using OnnxStack.Core;
55
using OnnxStack.ImageUpscaler;
6-
using OnnxStack.ImageUpscaler.Config;
76
using System.Reflection;
87

98
namespace OnnxStack.Console

OnnxStack.Core/OnnxStack.Core.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-
<Version>0.13.0</Version>
4+
<Version>0.14.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>

OnnxStack.ImageUpscaler/OnnxStack.ImageUpscaler.csproj

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

33
<PropertyGroup>
4-
<Version>0.13.0</Version>
4+
<Version>0.14.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
@@ -33,7 +33,8 @@
3333
</ItemGroup>
3434

3535
<ItemGroup>
36-
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" />
36+
<PackageReference Include="OnnxStack.Core" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' " />
37+
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
3738
</ItemGroup>
3839

3940
<ItemGroup>

OnnxStack.StableDiffusion/OnnxStack.StableDiffusion.csproj

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

33
<PropertyGroup>
4-
<Version>0.13.0</Version>
4+
<Version>0.14.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
@@ -43,7 +43,7 @@
4343
</ItemGroup>
4444

4545
<ItemGroup>
46-
<PackageReference Include="OnnxStack.Core" Version="0.13.0" Condition=" '$(Configuration)' == 'Release' " />
46+
<PackageReference Include="OnnxStack.Core" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' " />
4747
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
4848
</ItemGroup>
4949

OnnxStack.UI/OnnxStack.UI.csproj

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

33
<PropertyGroup>
4-
<Version>0.13.0</Version>
4+
<Version>0.14.0</Version>
55
<OutputType>WinExe</OutputType>
66
<TargetFramework>net7.0-windows</TargetFramework>
77
<Nullable>disable</Nullable>
@@ -53,8 +53,8 @@
5353
</ItemGroup>
5454

5555
<ItemGroup>
56-
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.13.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
57-
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.13.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
56+
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
57+
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.14.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-DirectML' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
5858
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-DirectML' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
5959
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-DirectML' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
6060
</ItemGroup>

OnnxStack.sln

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Global
3333
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-DirectML|Any CPU.Build.0 = Debug|Any CPU
3434
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-TensorRT|Any CPU.ActiveCfg = Debug|Any CPU
3535
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-TensorRT|Any CPU.Build.0 = Debug|Any CPU
36-
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|Any CPU.ActiveCfg = Debug|Any CPU
37-
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|Any CPU.Build.0 = Debug|Any CPU
36+
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
37+
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|Any CPU.Build.0 = Release|Any CPU
3838
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Cuda|Any CPU.ActiveCfg = Release|Any CPU
3939
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Cuda|Any CPU.Build.0 = Release|Any CPU
4040
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-DirectML|Any CPU.ActiveCfg = Release|Any CPU
@@ -49,8 +49,8 @@ Global
4949
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-DirectML|Any CPU.Build.0 = Debug|Any CPU
5050
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-TensorRT|Any CPU.ActiveCfg = Debug|Any CPU
5151
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-TensorRT|Any CPU.Build.0 = Debug|Any CPU
52-
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|Any CPU.ActiveCfg = Debug|Any CPU
53-
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|Any CPU.Build.0 = Debug|Any CPU
52+
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|Any CPU.Build.0 = Release|Any CPU
5454
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Cuda|Any CPU.ActiveCfg = Release|Any CPU
5555
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Cuda|Any CPU.Build.0 = Release|Any CPU
5656
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-DirectML|Any CPU.ActiveCfg = Release|Any CPU
@@ -65,8 +65,8 @@ Global
6565
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-DirectML|Any CPU.Build.0 = Debug|Any CPU
6666
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-TensorRT|Any CPU.ActiveCfg = Debug|Any CPU
6767
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-TensorRT|Any CPU.Build.0 = Debug|Any CPU
68-
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|Any CPU.ActiveCfg = Debug|Any CPU
69-
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|Any CPU.Build.0 = Debug|Any CPU
68+
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|Any CPU.ActiveCfg = Release|Any CPU
69+
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|Any CPU.Build.0 = Release|Any CPU
7070
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Cuda|Any CPU.ActiveCfg = Release|Any CPU
7171
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Cuda|Any CPU.Build.0 = Release|Any CPU
7272
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-DirectML|Any CPU.ActiveCfg = Release|Any CPU
@@ -81,8 +81,8 @@ Global
8181
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-DirectML|Any CPU.Build.0 = Debug-DirectML|Any CPU
8282
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-TensorRT|Any CPU.ActiveCfg = Debug-TensorRT|Any CPU
8383
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-TensorRT|Any CPU.Build.0 = Debug-TensorRT|Any CPU
84-
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|Any CPU.ActiveCfg = Debug|Any CPU
85-
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|Any CPU.Build.0 = Debug|Any CPU
84+
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|Any CPU.Build.0 = Release|Any CPU
8686
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Cuda|Any CPU.ActiveCfg = Release-Cuda|Any CPU
8787
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Cuda|Any CPU.Build.0 = Release-Cuda|Any CPU
8888
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-DirectML|Any CPU.ActiveCfg = Release-DirectML|Any CPU
@@ -97,8 +97,8 @@ Global
9797
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-DirectML|Any CPU.Build.0 = Debug|Any CPU
9898
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-TensorRT|Any CPU.ActiveCfg = Debug|Any CPU
9999
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-TensorRT|Any CPU.Build.0 = Debug|Any CPU
100-
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|Any CPU.ActiveCfg = Debug|Any CPU
101-
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|Any CPU.Build.0 = Debug|Any CPU
100+
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
101+
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|Any CPU.Build.0 = Release|Any CPU
102102
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Cuda|Any CPU.ActiveCfg = Release|Any CPU
103103
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Cuda|Any CPU.Build.0 = Release|Any CPU
104104
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-DirectML|Any CPU.ActiveCfg = Release|Any CPU

0 commit comments

Comments
 (0)