VideoTest.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <UseWPF>true</UseWPF>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <Platforms>AnyCPU;x64;x86</Platforms>
  8. <PlatformTarget>x64</PlatformTarget>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <DefineConstants>DEBUG;TRACE</DefineConstants>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
  14. <DefineConstants>DEBUG;TRACE</DefineConstants>
  15. <PlatformTarget>x86</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
  24. <PlatformTarget>x86</PlatformTarget>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\..\src\YunDa.Util\VideoSurveillanceAdapter\VideoSurveillanceAdapter.csproj" />
  28. </ItemGroup>
  29. </Project>