forked from TensorStack-AI/TensorStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTensorStack.Video.csproj
More file actions
57 lines (49 loc) · 1.71 KB
/
TensorStack.Video.csproj
File metadata and controls
57 lines (49 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.0.1</Version>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Description></Description>
</PropertyGroup>
<!--Projects-->
<ItemGroup>
<ProjectReference Include="..\TensorStack.Common\TensorStack.Common.csproj" />
</ItemGroup>
<!--Nuget Packages-->
<ItemGroup>
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="OpenCvSharp4" Version="4.10.0.20241108" />
</ItemGroup>
<!--Nuget Settings-->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<Authors>sa_ddam213</Authors>
<Company>TensorStack</Company>
<Copyright>TensorStack - 2025</Copyright>
<RepositoryUrl>https://github.com/TensorStack-AI/TensorStack</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>onnx;onnx-runtime;net9;</PackageTags>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageIcon>Icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<None Remove="README.md" />
<None Remove="Icon.png" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Remove="Add.png" />
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Assets\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>