forked from IntptrMax/TaggerSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaggerSharp.csproj
31 lines (26 loc) · 865 Bytes
/
TaggerSharp.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TorchSharp-cuda-windows" Version="0.103.1" />
<PackageReference Include="TorchVision" Version="0.103.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\tags.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Assets\vit.torchscript">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Assets\vit_fp16.torchscript">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>