Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/PushGP.Cli/Push.Cli.csproj @ 15017

Last change on this file since 15017 was 15017, checked in by pkimmesw, 7 years ago

#2665 Fixed Benchmark Problem Definition, Converted LoopExpressions to stateless expressions, Added several unit test to ensure funcionality, Fixed UI bugs

File size: 3.9 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  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{293FD718-99E9-4F6A-A0EC-343C92D0B03E}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.PushGP.Cli</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.PushGP.Cli</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <PlatformTarget>AnyCPU</PlatformTarget>
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <PlatformTarget>AnyCPU</PlatformTarget>
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35    <LangVersion>5</LangVersion>
36  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
39      <SpecificVersion>False</SpecificVersion>
40      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
41    </Reference>
42    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
43      <SpecificVersion>False</SpecificVersion>
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Random-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
47      <SpecificVersion>False</SpecificVersion>
48      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="System" />
51    <Reference Include="System.Core" />
52    <Reference Include="System.Windows.Forms" />
53    <Reference Include="System.Xml.Linq" />
54    <Reference Include="System.Data.DataSetExtensions" />
55    <Reference Include="Microsoft.CSharp" />
56    <Reference Include="System.Data" />
57    <Reference Include="System.Net.Http" />
58    <Reference Include="System.Xml" />
59  </ItemGroup>
60  <ItemGroup>
61    <Compile Include="Program.cs" />
62    <Compile Include="Properties\AssemblyInfo.cs" />
63  </ItemGroup>
64  <ItemGroup>
65    <None Include="App.config" />
66  </ItemGroup>
67  <ItemGroup>
68    <ProjectReference Include="..\HeuristicLab.Problems.ProgramSynthesis\HeuristicLab.Problems.ProgramSynthesis.csproj">
69      <Project>{5C93448C-47E3-4C3F-B1D0-EE62A48C3204}</Project>
70      <Name>HeuristicLab.Problems.ProgramSynthesis</Name>
71    </ProjectReference>
72  </ItemGroup>
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
75       Other similar extension points exist, see Microsoft.Common.targets.
76  <Target Name="BeforeBuild">
77  </Target>
78  <Target Name="AfterBuild">
79  </Target>
80  -->
81</Project>
Note: See TracBrowser for help on using the repository browser.