TUCamera.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{ADF97C19-94B1-451E-8E1C-8A8189B6A1E1}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>TUCamera</RootNamespace>
  11. <AssemblyName>TUCamera</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>false</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>bin\x86\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  41. <DebugType>full</DebugType>
  42. <PlatformTarget>x86</PlatformTarget>
  43. <LangVersion>7.3</LangVersion>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  48. <OutputPath>bin\x86\Release\</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <Optimize>true</Optimize>
  51. <DebugType>pdbonly</DebugType>
  52. <PlatformTarget>x86</PlatformTarget>
  53. <LangVersion>7.3</LangVersion>
  54. <ErrorReport>prompt</ErrorReport>
  55. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <Reference Include="System" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Drawing" />
  61. <Reference Include="System.Windows.Forms" />
  62. <Reference Include="System.Xml.Linq" />
  63. <Reference Include="System.Data.DataSetExtensions" />
  64. <Reference Include="Microsoft.CSharp" />
  65. <Reference Include="System.Data" />
  66. <Reference Include="System.Net.Http" />
  67. <Reference Include="System.Xml" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="Logs.cs" />
  71. <Compile Include="Tools.cs" />
  72. <Compile Include="TUCamAPI.cs" />
  73. <Compile Include="TUCamera.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="TUCameraManager.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ProjectReference Include="..\Base\Base.csproj">
  79. <Project>{05C4C721-F8E3-42E1-B817-9D165DA1A9FB}</Project>
  80. <Name>Base</Name>
  81. </ProjectReference>
  82. </ItemGroup>
  83. <ItemGroup />
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. </Project>