forked from TensorStack-AI/TensorStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTensorStack.Common.csproj
More file actions
39 lines (35 loc) · 1.21 KB
/
TensorStack.Common.csproj
File metadata and controls
39 lines (35 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<!--Common Packages-->
<ItemGroup>
<PackageReference Include="System.Numerics.Tensors" Version="10.0.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.23.2" />
</ItemGroup>
<!--Nuget Settings-->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<Description></Description>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Core library for .NET handling tensors, pipelines, and ONNX model/session management.</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>