Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Selection/HeuristicLab.Selection.csproj @ 22

Last change on this file since 22 was 2, checked in by swagner, 17 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 3.9 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.21022</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Selection</RootNamespace>
11    <AssemblyName>HeuristicLab.Selection</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
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    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
37    <DocumentationFile>bin\Release\HeuristicLab.Selection.XML</DocumentationFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Data" />
42    <Reference Include="System.Xml" />
43  </ItemGroup>
44  <ItemGroup>
45    <Compile Include="RightChildReducer.cs" />
46    <Compile Include="LeftReducer.cs" />
47    <Compile Include="MergingReducer.cs" />
48    <Compile Include="ProportionalSelector.cs" />
49    <Compile Include="LinearRankSelector.cs" />
50    <Compile Include="LeftSelector.cs" />
51    <Compile Include="RandomSelector.cs" />
52    <Compile Include="ReducerBase.cs" />
53    <Compile Include="RightReducer.cs" />
54    <Compile Include="RightSelector.cs" />
55    <Compile Include="SelectorBase.cs" />
56    <Compile Include="StochasticSelectorBase.cs" />
57    <Compile Include="TournamentSelector.cs" />
58    <Compile Include="HeuristicLabSelectionPlugin.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60  </ItemGroup>
61  <ItemGroup>
62    <None Include="HeuristicLab.snk" />
63  </ItemGroup>
64  <ItemGroup>
65    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
66      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
67      <Name>HeuristicLab.Core</Name>
68    </ProjectReference>
69    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
70      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
71      <Name>HeuristicLab.Data</Name>
72    </ProjectReference>
73    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
74      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
75      <Name>HeuristicLab.Operators</Name>
76    </ProjectReference>
77    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
78      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
79      <Name>HeuristicLab.PluginInfrastructure</Name>
80    </ProjectReference>
81  </ItemGroup>
82  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
83  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84       Other similar extension points exist, see Microsoft.Common.targets.
85  <Target Name="BeforeBuild">
86  </Target>
87  <Target Name="AfterBuild">
88  </Target>
89  -->
90</Project>
Note: See TracBrowser for help on using the repository browser.