Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/Test/Test.csproj @ 12962

Last change on this file since 12962 was 12830, checked in by aballeit, 9 years ago

#2283 x64 build of projects

File size: 8.0 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>{8B4C199E-C08B-479E-9B82-6AE5B113459E}</ProjectGuid>
7    <OutputType>Library</OutputType>
8    <AppDesignerFolder>Properties</AppDesignerFolder>
9    <RootNamespace>HeuristicLab.Problems.GrammaticalOptimization.Test</RootNamespace>
10    <AssemblyName>Test</AssemblyName>
11    <TargetFrameworkVersion>v4.5</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    <TargetFrameworkProfile />
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29    <Prefer32Bit>false</Prefer32Bit>
30  </PropertyGroup>
31  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32    <DebugType>pdbonly</DebugType>
33    <Optimize>true</Optimize>
34    <OutputPath>bin\Release\</OutputPath>
35    <DefineConstants>TRACE</DefineConstants>
36    <ErrorReport>prompt</ErrorReport>
37    <WarningLevel>4</WarningLevel>
38    <Prefer32Bit>false</Prefer32Bit>
39  </PropertyGroup>
40  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\x64\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x64</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
48  </PropertyGroup>
49  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
50    <OutputPath>bin\x64\Release\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x64</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
57  </PropertyGroup>
58  <ItemGroup>
59    <Reference Include="System" />
60    <Reference Include="System.Core">
61      <RequiredTargetFramework>3.5</RequiredTargetFramework>
62    </Reference>
63  </ItemGroup>
64  <Choose>
65    <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
66      <ItemGroup>
67        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
68      </ItemGroup>
69    </When>
70    <Otherwise>
71      <ItemGroup>
72        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
73      </ItemGroup>
74    </Otherwise>
75  </Choose>
76  <ItemGroup>
77    <Compile Include="RunMctsExperiments.cs" />
78    <Compile Include="RunDemo.cs" />
79    <Compile Include="RunSequentialSolverFuncApproxExperiments.cs" />
80    <Compile Include="RunBaselineExperiments.cs" />
81    <Compile Include="RunGpExperiments.cs" />
82    <Compile Include="TestCanonicalExpressions.cs" />
83    <Compile Include="TestSymbRegInstances.cs" />
84    <Compile Include="TestSequence.cs" />
85    <Compile Include="TestBanditPolicies.cs" />
86    <Compile Include="TestInstances.cs" />
87    <Compile Include="Properties\AssemblyInfo.cs" />
88    <Compile Include="TestSolvers.cs" />
89    <Compile Include="TestTunedSettings.cs" />
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
93      <Project>{24408f7d-ee0f-4886-a08b-ec324d662e47}</Project>
94      <Name>HeuristicLab.Algorithms.Bandits</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.Algorithms.GeneticProgramming\HeuristicLab.Algorithms.GeneticProgramming.csproj">
97      <Project>{14BEC23F-63FD-4954-B8AE-E2F4962E9B57}</Project>
98      <Name>HeuristicLab.Algorithms.GeneticProgramming</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
101      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
102      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
105      <Project>{3A2FBBCB-F9DF-4970-87F3-F13337D941AD}</Project>
106      <Name>HeuristicLab.Common</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.Distributions\HeuristicLab.Distributions.csproj">
109      <Project>{31171165-E16F-4A1A-A8AB-25C6AB3A71B9}</Project>
110      <Name>HeuristicLab.Distributions</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.Problems.Bandits\HeuristicLab.Problems.Bandits.csproj">
113      <Project>{E8138227-0C64-4E85-B676-21D3B97F254F}</Project>
114      <Name>HeuristicLab.Problems.Bandits</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization.SymbReg\HeuristicLab.Problems.GrammaticalOptimization.SymbReg.csproj">
117      <Project>{17a7a380-86ce-482d-8d22-cbd70cc97f0d}</Project>
118      <Name>HeuristicLab.Problems.GrammaticalOptimization.SymbReg</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
121      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
122      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
123    </ProjectReference>
124  </ItemGroup>
125  <Choose>
126    <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
127      <ItemGroup>
128        <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
129          <Private>False</Private>
130        </Reference>
131        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
132          <Private>False</Private>
133        </Reference>
134        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
135          <Private>False</Private>
136        </Reference>
137        <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
138          <Private>False</Private>
139        </Reference>
140      </ItemGroup>
141    </When>
142  </Choose>
143  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
144  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
145  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
146       Other similar extension points exist, see Microsoft.Common.targets.
147  <Target Name="BeforeBuild">
148  </Target>
149  <Target Name="AfterBuild">
150  </Target>
151  -->
152</Project>
Note: See TracBrowser for help on using the repository browser.