Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/GpdlCompiler/GpdlCompiler.csproj @ 9528

Last change on this file since 9528 was 9528, checked in by gkronber, 11 years ago

#2026 worked on HL integration of GPDL compiler

File size: 4.8 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  <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>{C3A2E1C9-9677-4992-A1B7-7B38CDB82FEF}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>GpdlCompiler</RootNamespace>
11    <AssemblyName>GpdlCompiler</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>AnyCPU</PlatformTarget>
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <PlatformTarget>AnyCPU</PlatformTarget>
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="ALGLIB-3.7.0">
36      <HintPath>..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath>
37    </Reference>
38    <Reference Include="HeuristicLab.Algorithms.GeneticAlgorithm-3.3">
39      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll</HintPath>
40    </Reference>
41    <Reference Include="HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3">
42      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4">
45      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
46    </Reference>
47    <Reference Include="HeuristicLab.Optimization.Operators-3.3">
48      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.ParallelEngine-3.3">
51      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.ParallelEngine-3.3.dll</HintPath>
52    </Reference>
53    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
54      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
55    </Reference>
56    <Reference Include="HeuristicLab.Problems.Instances-3.3">
57      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
58    </Reference>
59    <Reference Include="HeuristicLab.Problems.Instances.DataAnalysis-3.3">
60      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances.DataAnalysis-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="HeuristicLab.Selection-3.3">
66      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Selection-3.3.dll</HintPath>
67    </Reference>
68    <Reference Include="HeuristicLab.SequentialEngine-3.3">
69      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.SequentialEngine-3.3.dll</HintPath>
70    </Reference>
71    <Reference Include="System" />
72    <Reference Include="System.Core" />
73    <Reference Include="System.Xml.Linq" />
74    <Reference Include="System.Data.DataSetExtensions" />
75    <Reference Include="Microsoft.CSharp" />
76    <Reference Include="System.Data" />
77    <Reference Include="System.Xml" />
78  </ItemGroup>
79  <ItemGroup>
80    <Compile Include="Program.cs" />
81    <Compile Include="Properties\AssemblyInfo.cs" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\HeuristicLab.Problems.GPDL\3.4\HeuristicLab.Problems.GPDL-3.4.csproj">
85      <Project>{e4ee5afb-d552-447b-8a16-6cbe7938af32}</Project>
86      <Name>HeuristicLab.Problems.GPDL-3.4</Name>
87    </ProjectReference>
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
91       Other similar extension points exist, see Microsoft.Common.targets.
92  <Target Name="BeforeBuild">
93  </Target>
94  <Target Name="AfterBuild">
95  </Target>
96  -->
97</Project>
Note: See TracBrowser for help on using the repository browser.