|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <Version>0.0.1</Version> |
5 | 4 | <TargetFramework>net9.0</TargetFramework> |
6 | | - <ImplicitUsings>disable</ImplicitUsings> |
7 | | - <Nullable>disable</Nullable> |
8 | 5 | <PlatformTarget>x64</PlatformTarget> |
9 | | - <Description></Description> |
10 | 6 | </PropertyGroup> |
11 | 7 |
|
12 | 8 |
|
13 | 9 | <!--Projects--> |
14 | | - |
| 10 | + <ItemGroup Condition=" '$(Configuration)' == 'Debug'"> |
| 11 | + <ProjectReference Include="..\TensorStack.Common\TensorStack.Common.csproj" /> |
| 12 | + </ItemGroup> |
15 | 13 |
|
16 | 14 | <!--Packages--> |
| 15 | + <ItemGroup Condition=" '$(Configuration)' == 'Release'"> |
| 16 | + <PackageReference Include="TensorStack.Common" Version="$(Version)" /> |
| 17 | + </ItemGroup> |
| 18 | + |
| 19 | + <!--Common Packages--> |
17 | 20 | <ItemGroup> |
18 | | - <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.8" /> |
| 21 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" /> |
19 | 22 | <PackageReference Include="Microsoft.ML.Tokenizers" Version="2.0.0-preview.1.25125.4" /> |
20 | 23 | </ItemGroup> |
21 | 24 |
|
|
25 | 28 | <Title>$(AssemblyName)</Title> |
26 | 29 | <PackageId>$(AssemblyName)</PackageId> |
27 | 30 | <Product>$(AssemblyName)</Product> |
28 | | - <Authors>sa_ddam213</Authors> |
29 | | - <Company>TensorStack</Company> |
30 | | - <Copyright>TensorStack - 2025</Copyright> |
31 | | - <RepositoryUrl>https://github.com/TensorStack-AI/TensorStack</RepositoryUrl> |
32 | | - <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
33 | | - <PackageTags>onnx;onnx-runtime;net9;</PackageTags> |
34 | | - <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
35 | 31 | <PackageIcon>Icon.png</PackageIcon> |
36 | 32 | </PropertyGroup> |
37 | 33 | <ItemGroup Condition="'$(Configuration)' == 'Debug'"> |
|
49 | 45 | <PackagePath>\</PackagePath> |
50 | 46 | </None> |
51 | 47 | </ItemGroup> |
52 | | - <ItemGroup> |
53 | | - <ProjectReference Include="..\TensorStack.Common\TensorStack.Common.csproj" /> |
54 | | - </ItemGroup> |
55 | | - |
56 | | - |
57 | 48 |
|
58 | 49 | </Project> |
0 commit comments