Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1886 added an algorithm that executes analyzers on a solution cache

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