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
53 lines (47 loc) · 1.64 KB
/
TensorStack.Video.csproj
File metadata and controls
53 lines (47 loc) · 1.64 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</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>
<!--Binaries-->
<ItemGroup>
<Content Include="Interpolation.onnx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<CopyToPublishDirectory>true</CopyToPublishDirectory>
<Pack>true</Pack>
</Content>
</ItemGroup>
<!--Nuget Settings-->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Video processing and tensor extraction for .NET using OpenCvSharp4 and ONNX Runtime.</Description>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<None Remove="README.md" />
<None Remove="Icon.png" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Assets\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>