forked from TensorStack-AI/TensorStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTensorStack.Image.csproj
More file actions
42 lines (37 loc) · 1.27 KB
/
TensorStack.Image.csproj
File metadata and controls
42 lines (37 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<!--Projects-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
<ProjectReference Include="..\TensorStack.Common\TensorStack.Common.csproj" />
</ItemGroup>
<!--Packages-->
<ItemGroup Condition=" '$(Configuration)' == 'Release'">
<PackageReference Include="TensorStack.Common" Version="$(Version)" />
</ItemGroup>
<!--Nuget Settings-->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Image tensor operations for .NET using ONNX Runtime</Description>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<None Remove="README.md" />
<None Remove="Icon.png" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Assets\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>