Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2026 simplified symb-reg example, cleaned ATG file (whitespace), removed obsolete files

File size: 5.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  <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      <Private>True</Private>
38    </Reference>
39    <Reference Include="HeuristicLab.Algorithms.GeneticAlgorithm-3.3">
40      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll</HintPath>
41      <Private>True</Private>
42    </Reference>
43    <Reference Include="HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3">
44      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath>
45      <Private>True</Private>
46    </Reference>
47    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4">
48      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
49      <Private>True</Private>
50    </Reference>
51    <Reference Include="HeuristicLab.Optimization.Operators-3.3">
52      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
53      <Private>True</Private>
54    </Reference>
55    <Reference Include="HeuristicLab.ParallelEngine-3.3">
56      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.ParallelEngine-3.3.dll</HintPath>
57      <Private>True</Private>
58    </Reference>
59    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
60      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
61      <Private>True</Private>
62    </Reference>
63    <Reference Include="HeuristicLab.Problems.Instances-3.3">
64      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
65      <Private>True</Private>
66    </Reference>
67    <Reference Include="HeuristicLab.Problems.Instances.DataAnalysis-3.3">
68      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances.DataAnalysis-3.3.dll</HintPath>
69      <Private>True</Private>
70    </Reference>
71    <Reference Include="HeuristicLab.Random-3.3">
72      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
73      <Private>True</Private>
74    </Reference>
75    <Reference Include="HeuristicLab.Selection-3.3">
76      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Selection-3.3.dll</HintPath>
77      <Private>True</Private>
78    </Reference>
79    <Reference Include="HeuristicLab.SequentialEngine-3.3">
80      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.SequentialEngine-3.3.dll</HintPath>
81      <Private>True</Private>
82    </Reference>
83    <Reference Include="System" />
84    <Reference Include="System.Core" />
85    <Reference Include="System.Xml.Linq" />
86    <Reference Include="System.Data.DataSetExtensions" />
87    <Reference Include="Microsoft.CSharp" />
88    <Reference Include="System.Data" />
89    <Reference Include="System.Xml" />
90  </ItemGroup>
91  <ItemGroup>
92    <Compile Include="Program.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94  </ItemGroup>
95  <ItemGroup>
96    <ProjectReference Include="..\HeuristicLab.Problems.GPDL\3.4\HeuristicLab.Problems.GPDL-3.4.csproj">
97      <Project>{e4ee5afb-d552-447b-8a16-6cbe7938af32}</Project>
98      <Name>HeuristicLab.Problems.GPDL-3.4</Name>
99      <Private>True</Private>
100    </ProjectReference>
101  </ItemGroup>
102  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110</Project>
Note: See TracBrowser for help on using the repository browser.