FindLineTool.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>{C3BB2B1C-ED0C-4879-A6D3-D86342C5086E}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>FindLineTool</RootNamespace>
  11. <AssemblyName>FindLineTool</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="SunnyUI">
  38. <HintPath>..\VisionEdit\bin\Debug\ThirdLib\SunnyUI.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Drawing" />
  43. <Reference Include="System.Windows.Forms" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Net.Http" />
  49. <Reference Include="System.Xml" />
  50. <Reference Include="WeifenLuo.WinFormsUI.Docking, Version=2.9.0.0, Culture=neutral, PublicKeyToken=null" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="FindLine.cs" />
  54. <Compile Include="FindLineToolRun.cs" />
  55. <Compile Include="FormFindLine.cs">
  56. <SubType>Form</SubType>
  57. </Compile>
  58. <Compile Include="FormFindLine.Designer.cs">
  59. <DependentUpon>FormFindLine.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="Properties\AssemblyInfo.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <EmbeddedResource Include="FormFindLine.resx">
  65. <DependentUpon>FormFindLine.cs</DependentUpon>
  66. </EmbeddedResource>
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ProjectReference Include="..\CommonMethods\CommonHelper.csproj">
  70. <Project>{1C8D0DDC-2086-48A9-9586-F2B643E2FC54}</Project>
  71. <Name>CommonHelper</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\DataStruct\DataStruct.csproj">
  74. <Project>{DF3D4D4C-02DF-4F92-9FD4-0A861F64B0EF}</Project>
  75. <Name>DataStruct</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\FormLib\FormLib.csproj">
  78. <Project>{8c6fc8c6-8874-494b-8260-071f291aa33d}</Project>
  79. <Name>FormLib</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\ImageWindow\HWindow_Tool.csproj">
  82. <Project>{9BAA53FD-89B5-43E2-AC59-A27B006DEBB6}</Project>
  83. <Name>HWindow_Tool</Name>
  84. </ProjectReference>
  85. <ProjectReference Include="..\ToolBase\ToolBase.csproj">
  86. <Project>{7CD50B44-BF56-4E8E-8FA1-05F6968C1835}</Project>
  87. <Name>ToolBase</Name>
  88. </ProjectReference>
  89. <ProjectReference Include="..\ToolLib.Log\Logger\Logger.csproj">
  90. <Project>{D4E052B9-E541-4B67-A1F9-273073EF1D4B}</Project>
  91. <Name>Logger</Name>
  92. </ProjectReference>
  93. <ProjectReference Include="..\ToolLib.VisionJob\ToolLib.VisionJob.csproj">
  94. <Project>{16e8ff17-98a8-4452-ab9e-c433dc9c21f7}</Project>
  95. <Name>ToolLib.VisionJob</Name>
  96. </ProjectReference>
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  100. Other similar extension points exist, see Microsoft.Common.targets.
  101. <Target Name="BeforeBuild">
  102. </Target>
  103. <Target Name="AfterBuild">
  104. </Target>
  105. -->
  106. </Project>