WinFormsApp_final.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net5.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <Platforms>AnyCPU;x64</Platforms>
  7. <StartupObject>WinFormsApp_final.Program</StartupObject>
  8. <Nullable>disable</Nullable>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  11. <WarningLevel>2</WarningLevel>
  12. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="OpenCvSharp4" Version="4.5.3.20210725" />
  16. <PackageReference Include="OpenCvSharp4.runtime.win" Version="4.5.3.20210725" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Compile Update="Properties\Resources.Designer.cs">
  20. <DesignTime>True</DesignTime>
  21. <AutoGen>True</AutoGen>
  22. <DependentUpon>Resources.resx</DependentUpon>
  23. </Compile>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <EmbeddedResource Update="Properties\Resources.resx">
  27. <Generator>ResXFileCodeGenerator</Generator>
  28. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  29. </EmbeddedResource>
  30. </ItemGroup>
  31. </Project>