FindCircleTool.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{3D2739DB-5618-49BF-BF5C-5CCCD6A55C64}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>FindCircleTool</RootNamespace>
  11. <AssemblyName>FindCircleTool</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\VisionEdit\bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="halcondotnet">
  35. <HintPath>C:\Program Files\MVTec\HALCON-19.05-Progress\bin\dotnet20\halcondotnet.dll</HintPath>
  36. </Reference>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml.Linq" />
  42. <Reference Include="System.Data.DataSetExtensions" />
  43. <Reference Include="Microsoft.CSharp" />
  44. <Reference Include="System.Data" />
  45. <Reference Include="System.Net.Http" />
  46. <Reference Include="System.Xml" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="FindCircle.cs" />
  50. <Compile Include="FormFindCircle.cs">
  51. <SubType>Form</SubType>
  52. </Compile>
  53. <Compile Include="FormFindCircle.Designer.cs">
  54. <DependentUpon>FormFindCircle.cs</DependentUpon>
  55. </Compile>
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ProjectReference Include="..\CommonMethods\CommonHelper.csproj">
  60. <Project>{1C8D0DDC-2086-48A9-9586-F2B643E2FC54}</Project>
  61. <Name>CommonHelper</Name>
  62. </ProjectReference>
  63. <ProjectReference Include="..\DataStruct\DataStruct.csproj">
  64. <Project>{DF3D4D4C-02DF-4F92-9FD4-0A861F64B0EF}</Project>
  65. <Name>DataStruct</Name>
  66. </ProjectReference>
  67. <ProjectReference Include="..\ImageWindow\HWindow_Tool.csproj">
  68. <Project>{9BAA53FD-89B5-43E2-AC59-A27B006DEBB6}</Project>
  69. <Name>HWindow_Tool</Name>
  70. </ProjectReference>
  71. <ProjectReference Include="..\ToolBase\ToolBase.csproj">
  72. <Project>{7CD50B44-BF56-4E8E-8FA1-05F6968C1835}</Project>
  73. <Name>ToolBase</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <EmbeddedResource Include="FormFindCircle.resx">
  78. <DependentUpon>FormFindCircle.cs</DependentUpon>
  79. </EmbeddedResource>
  80. </ItemGroup>
  81. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>