-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathigvc_csharp.csproj
More file actions
46 lines (42 loc) · 2.48 KB
/
Copy pathigvc_csharp.csproj
File metadata and controls
46 lines (42 loc) · 2.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Google.FlatBuffers" Version="25.2.10" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.3.9" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.9" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.3.9" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.1" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.26.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="OpenCvSharp4" Version="4.13.0.20260330" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.11.0.20250507" />
<PackageReference Include="Sdcb.OpenCvSharp4.mini.runtime.ubuntu.22.04-arm64" Version="4.11.0.35" />
<!-- <PackageReference Include="OpenCvSharp4" Version="4.13.0.20260330" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.11.0.20250507" />
<PackageReference Include="OpenCvSharp4.official.runtime.linux-x64" Version="4.13.0.20260329" /> -->
<PackageReference Include="SocketCANSharp" Version="0.13.0" />
<PackageReference Include="Silk.NET.SDL" Version="2.22.0" />
<PackageReference Include="System.CommandLine" Version="2.0.2" />
<PackageReference Include="System.IO.Hashing" Version="10.0.1" />
<PackageReference Include="Tesseract" Version="5.2.0" />
<PackageReference Include="YoloSharp.Gpu" Version="6.1.0" />
<PackageReference Include="ZstdSharp.Port" Version="0.8.8" />
</ItemGroup>
<ItemGroup>
<Reference Include="VnSdk_Net">
<HintPath>..\..\..\..\..\..\usr\local\vectornav\net\VnSdk_Net.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="CopyVNDll" AfterTargets="Build">
<Copy SourceFiles="/usr/local/vectornav/net/VnSdk_Net.dll" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />
</Target>
</Project>