mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* update * bump version * Update README.md * fix conflicts * fix ci * fix circleci * upgrade to ubuntu20.04 for github ci * update * install glibc * try to fix cuda build * try to fix cuda build * fix build-cu102 && build_cpu_sdk * revert to setup-python@v2 * try to fix pplnn * fix protobuf --------- Co-authored-by: Xin Chen <irexyc@gmail.com>
23 lines
717 B
XML
23 lines
717 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MMDeployCSharp" Version="0.14.0" />
|
|
<PackageReference Include="OpenCvSharp4" Version="4.5.5.20211231" />
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.5.5.20211231" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|