HuarayVMDemo.csproj 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">x64</Platform>
  7. <ProjectGuid>{B2C3D4E5-F6A7-4B5C-9D8E-0F1A2B3C4D5E}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>HuarayVMDemo</RootNamespace>
  10. <AssemblyName>HuarayVMDemo</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\x64\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <PlatformTarget>x64</PlatformTarget>
  27. <Prefer32Bit>false</Prefer32Bit>
  28. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\x64\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <PlatformTarget>x64</PlatformTarget>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Drawing" />
  45. <Reference Include="System.Windows.Forms" />
  46. <Reference Include="System.Configuration" />
  47. <!-- 华睿科技相机SDK DLL(需复制到输出目录) -->
  48. <Reference Include="MVSDK_Net">
  49. <HintPath>C:\Program Files\HuarayTech\MV Viewer\Development\DOTNET DLL\IMV\DOTNET_4.0\x64\MVSDK_Net.dll</HintPath>
  50. <Private>True</Private>
  51. </Reference>
  52. <!-- 海康威视VisionMaster SDK DLL(安装时已注册到GAC,不需要复制) -->
  53. <Reference Include="VM.Core">
  54. <HintPath>C:\Program Files\VisionMaster4.4.0\Development\V4.x\ComControls\Assembly\VM.Core.dll</HintPath>
  55. <Private>False</Private>
  56. </Reference>
  57. <Reference Include="VM.PlatformSDKCS">
  58. <HintPath>C:\Program Files\VisionMaster4.4.0\Development\V4.x\ComControls\Assembly\VM.PlatformSDKCS.dll</HintPath>
  59. <Private>False</Private>
  60. </Reference>
  61. <Reference Include="ImageSourceModuleCs">
  62. <HintPath>C:\Program Files\VisionMaster4.4.0\Development\V4.x\ComControls\Assembly\ImageSourceModuleCs.dll</HintPath>
  63. <Private>False</Private>
  64. </Reference>
  65. <Reference Include="VMControls.Winform.Release">
  66. <HintPath>C:\Program Files\VisionMaster4.4.0\Development\V4.x\ComControls\Assembly\VMControls.Winform.Release.dll</HintPath>
  67. <Private>False</Private>
  68. </Reference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Forms\MainForm.cs">
  73. <SubType>Form</SubType>
  74. </Compile>
  75. <Compile Include="Forms\MainForm.Designer.cs">
  76. <DependentUpon>MainForm.cs</DependentUpon>
  77. </Compile>
  78. <EmbeddedResource Include="Forms\MainForm.resx">
  79. <DependentUpon>MainForm.cs</DependentUpon>
  80. </EmbeddedResource>
  81. </ItemGroup>
  82. <ItemGroup>
  83. <ProjectReference Include="..\HuarayVMCore\HuarayVMCore.csproj">
  84. <Project>{A1B2C3D4-E5F6-4A5B-8C7D-9E0F1A2B3C4D}</Project>
  85. <Name>HuarayVMCore</Name>
  86. </ProjectReference>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="App.config" />
  90. </ItemGroup>
  91. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  92. </Project>