Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Tests/HeuristicLab.Tests.csproj @ 14323

Last change on this file since 14323 was 14323, checked in by pkimmesw, 8 years ago

#2665 Added Unit Test Project, CodeGenerator and refactored project structure

File size: 5.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.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>{117B7D68-ED7D-4350-996B-9CA15259E107}</ProjectGuid>
7    <OutputType>Library</OutputType>
8    <AppDesignerFolder>Properties</AppDesignerFolder>
9    <RootNamespace>HeuristicLab.Tests</RootNamespace>
10    <AssemblyName>HeuristicLab.Tests</AssemblyName>
11    <TargetFrameworkVersion>v4.5.2</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="System" />
39  </ItemGroup>
40  <Choose>
41    <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
42      <ItemGroup>
43        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
44      </ItemGroup>
45    </When>
46    <Otherwise>
47      <ItemGroup>
48        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
49      </ItemGroup>
50    </Otherwise>
51  </Choose>
52  <ItemGroup>
53    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\MixedExpressionTests.cs" />
54    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\NameExpressionTests.cs" />
55    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\FloatExpressionTests.cs" />
56    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\BooleanExpressionTests.cs" />
57    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\ExecExpressionTests.cs" />
58    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\CodeExpressionTests.cs" />
59    <Compile Include="HeuristicLab.Algorithms.PushGP\Expressions\IntegerExpressionTests.cs" />
60    <Compile Include="HeuristicLab.Algorithms.PushGP\InterpreterTest.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs" />
62  </ItemGroup>
63  <ItemGroup>
64    <ProjectReference Include="..\HeuristicLab.Algorithms.PushGP\HeuristicLab.Algorithms.PushGP.csproj">
65      <Project>{368d1303-470c-4f31-91f2-0fad379daa45}</Project>
66      <Name>HeuristicLab.Algorithms.PushGP</Name>
67    </ProjectReference>
68  </ItemGroup>
69  <ItemGroup>
70    <Folder Include="HeuristicLab.Algorithms.PushGP\Problems\" />
71  </ItemGroup>
72  <Choose>
73    <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
74      <ItemGroup>
75        <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
76          <Private>False</Private>
77        </Reference>
78        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
79          <Private>False</Private>
80        </Reference>
81        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
82          <Private>False</Private>
83        </Reference>
84        <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
85          <Private>False</Private>
86        </Reference>
87      </ItemGroup>
88    </When>
89  </Choose>
90  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.