Upgrade .NET 4.6 -> 4.6.1. Add OpenCvSharp lib

This commit is contained in:
2020-06-16 09:33:22 +07:00
parent 30473ed1dd
commit 4ad493ff94
73 changed files with 235155 additions and 49 deletions

View File

@@ -0,0 +1,25 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<NativeDlls>$(MSBuildThisFileDirectory)..\..\runtimes</NativeDlls>
</PropertyGroup>
<ItemGroup Condition="!$(TargetFramework.Contains('netstandard')) And !$(TargetFramework.Contains('netcoreapp'))">
<Content Include="$(NativeDlls)\win-x86\native\OpenCvSharpExtern.dll">
<Link>dll\x86\OpenCvSharpExtern.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="$(NativeDlls)\win-x86\native\opencv_videoio_ffmpeg430.dll">
<Link>dll\x86\opencv_videoio_ffmpeg430.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="!$(TargetFramework.Contains('netstandard')) And !$(TargetFramework.Contains('netcoreapp'))">
<Content Include="$(NativeDlls)\win-x64\native\OpenCvSharpExtern.dll">
<Link>dll\x64\OpenCvSharpExtern.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="$(NativeDlls)\win-x64\native\opencv_videoio_ffmpeg430_64.dll">
<Link>dll\x64\opencv_videoio_ffmpeg430_64.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>