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

Commit 9f42b0e

Browse files
committed
Version v0.19.0
1 parent f304f2b commit 9f42b0e

File tree

6 files changed

+23
-22
lines changed

6 files changed

+23
-22
lines changed

OnnxStack.Console/OnnxStack.Console.csproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.15.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
20-
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.15.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
21-
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" />
19+
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
20+
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
21+
<PackageReference Include="OnnxStack.FeatureExtractor" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
22+
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
2223
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
2324
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
2425
</ItemGroup>

OnnxStack.Core/OnnxStack.Core.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.17.0</Version>
4+
<Version>0.19.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
<PlatformTarget>x64</PlatformTarget>
99

1010
<Title>OnnxStack.Core</Title>
11-
<Company>Backyard Industries</Company>
11+
<Company>Stackyard AI</Company>
1212
<Description>
1313
OnnxRuntime Integration Library for .NET Core
1414

15-
This repository harnesses the capabilities of both ONNX Runtime and Microsoft ML, offering a comprehensive solution that empowers developers to build, deploy, and execute machine learning models seamlessly in .NET environments, unlocking a world of possibilities for intelligent applications.
15+
OnnxStack transforms machine learning in .NET, Seamlessly integrating with ONNX Runtime and Microsoft ML, this library empowers you to build, deploy, and execute machine learning models entirely within the .NET ecosystem. Bid farewell to Python dependencies and embrace a new era of intelligent applications tailored for .NET
1616
</Description>
17-
<Copyright>Backyard Industries - 2023</Copyright>
17+
<Copyright>Stackyard AI - 2024</Copyright>
1818
<RepositoryUrl>https://github.com/saddam213/OnnxStack</RepositoryUrl>
1919
<PackageTags>onnx;onnx-runtime;llm;stable-diffusion</PackageTags>
2020
<Authors>sa_ddam213</Authors>

OnnxStack.FeatureExtractor/OnnxStack.FeatureExtractor.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.17.0</Version>
4+
<Version>0.19.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
<PlatformTarget>x64</PlatformTarget>
99

1010
<Title>OnnxStack.FeatureExtractor</Title>
11-
<Company>Backyard Industries</Company>
11+
<Company>Stackyard AI</Company>
1212
<Description>
1313
OnnxRuntime Image Feature Extractor Library for .NET Core
1414
</Description>
15-
<Copyright>Backyard Industries - 2023</Copyright>
15+
<Copyright>Stackyard AI - 2024</Copyright>
1616
<RepositoryUrl>https://github.com/saddam213/OnnxStack</RepositoryUrl>
1717
<PackageTags>onnx;onnx-runtime;</PackageTags>
1818
<Authors>sa_ddam213</Authors>
@@ -35,7 +35,7 @@
3535
</ItemGroup>
3636

3737
<ItemGroup>
38-
<PackageReference Include="OnnxStack.Core" Version="0.17.0" Condition=" '$(Configuration)' == 'Release' " />
38+
<PackageReference Include="OnnxStack.Core" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' " />
3939
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
4040
</ItemGroup>
4141

OnnxStack.ImageUpscaler/OnnxStack.ImageUpscaler.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.17.0</Version>
4+
<Version>0.19.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
<PlatformTarget>x64</PlatformTarget>
99

1010
<Title>OnnxStack.ImageUpscaler</Title>
11-
<Company>Backyard Industries</Company>
11+
<Company>Stackyard AI</Company>
1212
<Description>
1313
OnnxRuntime Image Upscale Library for .NET Core
1414
</Description>
15-
<Copyright>Backyard Industries - 2023</Copyright>
15+
<Copyright>Stackyard AI - 2024</Copyright>
1616
<RepositoryUrl>https://github.com/saddam213/OnnxStack</RepositoryUrl>
1717
<PackageTags>onnx;onnx-runtime;upscale</PackageTags>
1818
<Authors>sa_ddam213</Authors>
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535

3636
<ItemGroup>
37-
<PackageReference Include="OnnxStack.Core" Version="0.17.0" Condition=" '$(Configuration)' == 'Release' " />
37+
<PackageReference Include="OnnxStack.Core" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' " />
3838
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
3939
</ItemGroup>
4040

OnnxStack.StableDiffusion/OnnxStack.StableDiffusion.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.17.0</Version>
4+
<Version>0.19.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
88
<PlatformTarget>x64</PlatformTarget>
99

1010
<Title>OnnxStack.StableDiffusion</Title>
11-
<Company>Backyard Industries</Company>
11+
<Company>Stackyard AI</Company>
1212
<Description>
1313
Stable Diffusion Integration Library for .NET Core
1414

1515
This repository harnesses the capabilities of both ONNX Runtime and Microsoft ML, offering a comprehensive solution that empowers developers to build, deploy, and execute machine learning models seamlessly in .NET environments, unlocking a world of possibilities for intelligent applications.
1616
</Description>
17-
<Copyright>Backyard Industries - 2023</Copyright>
17+
<Copyright>Stackyard AI - 2023</Copyright>
1818
<RepositoryUrl>https://github.com/saddam213/OnnxStack</RepositoryUrl>
1919
<PackageTags>onnx;onnx-runtime;llm;stable-diffusion</PackageTags>
2020
<Authors>sa_ddam213</Authors>
@@ -44,7 +44,7 @@
4444
</ItemGroup>
4545

4646
<ItemGroup>
47-
<PackageReference Include="OnnxStack.Core" Version="0.17.0" Condition=" '$(Configuration)' == 'Release' " />
47+
<PackageReference Include="OnnxStack.Core" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' " />
4848
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
4949
</ItemGroup>
5050

OnnxStack.UI/OnnxStack.UI.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.17.0</Version>
4+
<Version>0.19.0</Version>
55
<OutputType>WinExe</OutputType>
66
<TargetFramework>net7.0-windows</TargetFramework>
77
<Nullable>disable</Nullable>
@@ -51,8 +51,8 @@
5151
</ItemGroup>
5252

5353
<ItemGroup>
54-
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.17.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
55-
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.17.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
54+
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
55+
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
5656
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
5757
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
5858
</ItemGroup>

0 commit comments

Comments
 (0)