2025-12-26 03:18:21 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2025-12-29 08:09:14 +08:00
|
|
|
|
<BaseOutputPath>D:\Codes\Ayay\SHH.CameraService\bin</BaseOutputPath>
|
2026-01-31 10:43:41 +08:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2025-12-26 03:18:21 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Drivers\NativeLibraryLoader.cs" />
|
|
|
|
|
|
<Compile Remove="Drivers\VideoSourceFactory.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-01-31 10:43:41 +08:00
|
|
|
|
<PackageReference Include="Lennox.LibYuvSharp" Version="1.1.2" />
|
2026-01-15 18:56:39 +08:00
|
|
|
|
<PackageReference Include="Serilog" Version="4.3.0" />
|
2025-12-26 03:18:21 +08:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
|
|
|
|
<PackageReference Include="OpenCvSharp4" Version="4.11.0.20250507" />
|
|
|
|
|
|
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.11.0.20250507" />
|
|
|
|
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.11.0.20250507" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-07 10:59:03 +08:00
|
|
|
|
<ItemGroup>
|
2026-01-15 18:56:39 +08:00
|
|
|
|
<ProjectReference Include="..\Ayay.SerilogLogs\Ayay.SerilogLogs.csproj" />
|
2026-01-21 19:03:59 +08:00
|
|
|
|
<ProjectReference Include="..\SHH.Contracts.Grpc\SHH.Contracts.Grpc.csproj" />
|
2026-01-07 10:59:03 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2025-12-26 03:18:21 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Using Include="System.Collections.Concurrent" />
|
|
|
|
|
|
<Using Include="System.Collections.ObjectModel" />
|
|
|
|
|
|
<Using Include="System.Diagnostics" />
|
|
|
|
|
|
<Using Include="System.Runtime.InteropServices" />
|
|
|
|
|
|
<Using Include="System.Text" />
|
|
|
|
|
|
<Using Include="System.Text.Json.Serialization" />
|
|
|
|
|
|
<Using Include="System.Threading.Channels" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-17 16:40:27 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="Subscribes\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2025-12-26 03:18:21 +08:00
|
|
|
|
</Project>
|