Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1886 fixed RealVectorEqualityComparer and added unit tests for caches

File size: 7.6 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.Encodings.RealVectorEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
51      <SpecificVersion>False</SpecificVersion>
52      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.RealVectorEncoding-3.3.dll</HintPath>
53      <Private>True</Private>
54    </Reference>
55    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
56      <SpecificVersion>False</SpecificVersion>
57      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
58    </Reference>
59    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
60      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
61    </Reference>
62    <Reference Include="HeuristicLab.Random-3.3">
63      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
64    </Reference>
65    <Reference Include="System" />
66    <Reference Include="System.Core">
67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
68    </Reference>
69    <Reference Include="System.Data" />
70    <Reference Include="System.Drawing" />
71    <Reference Include="System.Windows.Forms" />
72    <Reference Include="System.Xml" />
73  </ItemGroup>
74  <Choose>
75    <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
76      <ItemGroup>
77        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
78      </ItemGroup>
79    </When>
80    <Otherwise>
81      <ItemGroup>
82        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
83      </ItemGroup>
84    </Otherwise>
85  </Choose>
86  <ItemGroup>
87    <Compile Include="LPConvexHullSortingTest.cs" />
88    <Compile Include="LPConvexHullTest.cs" />
89    <Compile Include="PermutationCacheTest.cs" />
90    <Compile Include="DistanceMatrixToPointsTest.cs" />
91    <Compile Include="Properties\AssemblyInfo.cs" />
92    <Compile Include="ConvexHullTest.cs" />
93    <Compile Include="RealVectorSolutionCacheTest.cs" />
94  </ItemGroup>
95  <ItemGroup>
96    <ProjectReference Include="..\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views\3.3\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3.csproj">
97      <Project>{4b306883-eb5b-4de0-a5e1-b6bfd8a2e4d4}</Project>
98      <Name>HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers\3.3\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3.csproj">
101      <Project>{2533d1f9-f7f6-46cb-90d2-76d254e38dee}</Project>
102      <Name>HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Analysis.SolutionCaching\3.3\HeuristicLab.Analysis.SolutionCaching-3.3.csproj">
105      <Project>{a05aa272-14ec-4422-ac70-c9ca42164441}</Project>
106      <Name>HeuristicLab.Analysis.SolutionCaching-3.3</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\MIConvexHull\MIConvexHull.csproj">
109      <Project>{2337776d-7d0c-40aa-a439-c26c3ce24fab}</Project>
110      <Name>MIConvexHull</Name>
111    </ProjectReference>
112  </ItemGroup>
113  <Choose>
114    <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
115      <ItemGroup>
116        <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
117          <Private>False</Private>
118        </Reference>
119        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
120          <Private>False</Private>
121        </Reference>
122        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
123          <Private>False</Private>
124        </Reference>
125        <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
126          <Private>False</Private>
127        </Reference>
128      </ItemGroup>
129    </When>
130  </Choose>
131  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
132  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
133  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
134       Other similar extension points exist, see Microsoft.Common.targets.
135  <Target Name="BeforeBuild">
136  </Target>
137  <Target Name="AfterBuild">
138  </Target>
139  -->
140</Project>
Note: See TracBrowser for help on using the repository browser.