Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/AlgorithmBehaviorUnitTests.csproj @ 9945

Last change on this file since 9945 was 9945, checked in by ascheibe, 11 years ago

#1886

  • added new convex hull algorithm based on SMO/SVM
  • added unit test and a visualization
  • updated MIConvexHull
File size: 6.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProjectGuid>{8EFDEA16-A348-401F-82FC-C7E08FDA1C5A}</ProjectGuid>
7    <OutputType>Library</OutputType>
8    <AppDesignerFolder>Properties</AppDesignerFolder>
9    <RootNamespace>AlgorithmBehaviorUnitTests</RootNamespace>
10    <AssemblyName>AlgorithmBehaviorUnitTests</AssemblyName>
11    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
15    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
16    <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
17    <IsCodedUITest>False</IsCodedUITest>
18    <TestProjectType>UnitTest</TestProjectType>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
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  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="HeuristicLab.Common-3.3">
39      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
40    </Reference>
41    <Reference Include="HeuristicLab.Core-3.3">
42      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Data-3.3">
45      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
46    </Reference>
47    <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3">
48      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.PermutationEncoding-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
51      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
52    </Reference>
53    <Reference Include="HeuristicLab.Random-3.3">
54      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
55    </Reference>
56    <Reference Include="System" />
57    <Reference Include="System.Core">
58      <RequiredTargetFramework>3.5</RequiredTargetFramework>
59    </Reference>
60    <Reference Include="System.Data" />
61    <Reference Include="System.Drawing" />
62    <Reference Include="System.Windows.Forms" />
63    <Reference Include="System.Xml" />
64  </ItemGroup>
65  <Choose>
66    <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
67      <ItemGroup>
68        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
69      </ItemGroup>
70    </When>
71    <Otherwise>
72      <ItemGroup>
73        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
74      </ItemGroup>
75    </Otherwise>
76  </Choose>
77  <ItemGroup>
78    <Compile Include="UnitTest2.cs" />
79    <Compile Include="UnitTest1.cs" />
80    <Compile Include="Properties\AssemblyInfo.cs" />
81    <Compile Include="ConvexHullTest.cs" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views\3.3\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3.csproj">
85      <Project>{4b306883-eb5b-4de0-a5e1-b6bfd8a2e4d4}</Project>
86      <Name>HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers\3.3\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3.csproj">
89      <Project>{2533d1f9-f7f6-46cb-90d2-76d254e38dee}</Project>
90      <Name>HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\MIConvexHull\MIConvexHull.csproj">
93      <Project>{2337776d-7d0c-40aa-a439-c26c3ce24fab}</Project>
94      <Name>MIConvexHull</Name>
95    </ProjectReference>
96  </ItemGroup>
97  <Choose>
98    <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
99      <ItemGroup>
100        <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
101          <Private>False</Private>
102        </Reference>
103        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
104          <Private>False</Private>
105        </Reference>
106        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
107          <Private>False</Private>
108        </Reference>
109        <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
110          <Private>False</Private>
111        </Reference>
112      </ItemGroup>
113    </When>
114  </Choose>
115  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
116  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
117  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
118       Other similar extension points exist, see Microsoft.Common.targets.
119  <Target Name="BeforeBuild">
120  </Target>
121  <Target Name="AfterBuild">
122  </Target>
123  -->
124</Project>
Note: See TracBrowser for help on using the repository browser.