mirror of
https://github.com/cosyneco/MediaPipe.NET.git
synced 2025-05-20 00:47:02 +08:00

* fix examples (or at least try to) * stuff * Better dispose that * Add video input options because I'm selfish * THIS ONE MOTHERFUCKING FOR LOOP * Remove unnecessary using * Fix osu framework example * Use stable `Google.Protobuf` package * Add options to osu framework example * Use same options on all examples * Add framerate option * Use framerate option Co-authored-by: Speykious <speykious@gmail.com>
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Label="Project">
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Label="Package References">
|
|
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
|
|
<PackageReference Include="Mediapipe.Net.Framework.Protobuf" Version="0.8.9" />
|
|
<PackageReference Include="Mediapipe.Net.Runtime.CPU" Version="0.8.9" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
|
|
<PackageReference Include="ppy.osu.Framework" Version="2022.217.0" />
|
|
<PackageReference Include="SeeShark" Version="3.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Label="Project References">
|
|
<ProjectReference Include="..\Mediapipe.Net\Mediapipe.Net.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|