Camera.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>PaintDotNet.Camera</RootNamespace>
  11. <AssemblyName>PaintDotNet.Camera</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>false</Deterministic>
  15. <TargetFrameworkProfile />
  16. <NuGetPackageImportStamp>
  17. </NuGetPackageImportStamp>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  39. <DebugSymbols>true</DebugSymbols>
  40. <OutputPath>bin\x86\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  43. <DebugType>full</DebugType>
  44. <PlatformTarget>x86</PlatformTarget>
  45. <LangVersion>7.3</LangVersion>
  46. <ErrorReport>prompt</ErrorReport>
  47. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  50. <OutputPath>bin\x86\Release\</OutputPath>
  51. <DefineConstants>TRACE</DefineConstants>
  52. <Optimize>true</Optimize>
  53. <DebugType>pdbonly</DebugType>
  54. <PlatformTarget>x86</PlatformTarget>
  55. <LangVersion>7.3</LangVersion>
  56. <ErrorReport>prompt</ErrorReport>
  57. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  58. </PropertyGroup>
  59. <ItemGroup>
  60. <Reference Include="OpenCvSharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6adad1e807fea099, processorArchitecture=MSIL">
  61. <SpecificVersion>False</SpecificVersion>
  62. <HintPath>..\bin\Debug\OpenCvSharp.dll</HintPath>
  63. </Reference>
  64. <Reference Include="OpenCvSharp.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6adad1e807fea099, processorArchitecture=MSIL">
  65. <SpecificVersion>False</SpecificVersion>
  66. <HintPath>..\bin\Debug\OpenCvSharp.Extensions.dll</HintPath>
  67. </Reference>
  68. <Reference Include="PaintDotNet.Base, Version=1.0.7907.24561, Culture=neutral, processorArchitecture=MSIL">
  69. <SpecificVersion>False</SpecificVersion>
  70. <HintPath>..\bin\Debug\PaintDotNet.Base.dll</HintPath>
  71. </Reference>
  72. <Reference Include="System" />
  73. <Reference Include="System.Core" />
  74. <Reference Include="System.Drawing" />
  75. <Reference Include="System.Windows.Forms" />
  76. <Reference Include="System.Xml.Linq" />
  77. <Reference Include="System.Data.DataSetExtensions" />
  78. <Reference Include="Microsoft.CSharp" />
  79. <Reference Include="System.Data" />
  80. <Reference Include="System.Net.Http" />
  81. <Reference Include="System.Xml" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Compile Include="Exception\Exceptions.cs" />
  85. <Compile Include="ICamera.cs" />
  86. <Compile Include="Range.cs" />
  87. <Compile Include="Logs.cs" />
  88. <Compile Include="Tools.cs" />
  89. <Compile Include="CameraManager.cs" />
  90. <Compile Include="TUCamera\TUCamAPI.cs" />
  91. <Compile Include="TUCamera\TUCamera.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>