Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.0/sources/HeuristicLab.RealVector/HeuristicLab.RealVector.csproj @ 13685

Last change on this file since 13685 was 295, checked in by swagner, 16 years ago

Merged fix of ticket #161 (r292:294) from trunk into 3.0 release branch

File size: 5.2 KB
RevLine 
[2]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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    <ProductVersion>9.0.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{2D4E4565-3ED9-4BEB-AE75-39D871843D24}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.RealVector</RootNamespace>
12    <AssemblyName>HeuristicLab.RealVector</AssemblyName>
13    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
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    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <DocumentationFile>bin\Release\HeuristicLab.RealVector.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Data" />
39    <Reference Include="System.Xml" />
40  </ItemGroup>
41  <ItemGroup>
[104]42    <Compile Include="BlendAlphaBetaCrossover.cs" />
43    <Compile Include="BlendAlphaCrossover.cs" />
44    <Compile Include="BreederGeneticAlgorithmManipulator.cs" />
[74]45    <Compile Include="ContinuousCrossover.cs" />
46    <Compile Include="CompleteContinuousCrossover.cs" />
[75]47    <Compile Include="BoundsChecker.cs" />
[295]48    <Compile Include="ContinuousManipulator.cs" />
[70]49    <Compile Include="DiscreteCrossover.cs" />
[111]50    <Compile Include="DiscreteMultiCrossover.cs" />
[70]51    <Compile Include="HeuristicCrossover.cs" />
[111]52    <Compile Include="IntermediateMultiCrossover.cs" />
[104]53    <Compile Include="MichalewiczNonUniformAllPositionsManipulator.cs" />
54    <Compile Include="MichalewiczNonUniformOnePositionManipulator.cs" />
[70]55    <Compile Include="RandomConvexCrossover.cs" />
[74]56    <Compile Include="LocalCrossover.cs" />
[111]57    <Compile Include="RealVectorMultiCrossoverBase.cs" />
58    <Compile Include="RealVectorSelfAdaptiveMultiCrossoverBase.cs" />
59    <Compile Include="SelfAdaptiveDiscreteMultiCrossover.cs" />
60    <Compile Include="SelfAdaptiveIntermediateMultiCrossover.cs" />
[99]61    <Compile Include="SelfAdaptiveNormalAllPositionsManipulator.cs" />
[70]62    <Compile Include="UniformAllPositionsManipulator.cs" />
[2]63    <Compile Include="UniformRandomRealVectorGenerator.cs" />
64    <Compile Include="UniformOnePositionManipulator.cs" />
65    <Compile Include="RealVectorCrossoverBase.cs" />
66    <Compile Include="RealVectorManipulatorBase.cs" />
67    <Compile Include="HeuristicLabRealVectorPlugin.cs" />
68    <Compile Include="Properties\AssemblyInfo.cs" />
69    <Compile Include="SinglePointCrossover.cs" />
[85]70    <Compile Include="VariableStrengthNormalAllPositionsManipulator.cs" />
[2]71  </ItemGroup>
72  <ItemGroup>
73    <None Include="HeuristicLab.snk" />
[30]74    <None Include="Properties\AssemblyInfo.frame" />
[2]75  </ItemGroup>
76  <ItemGroup>
77    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
78      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
79      <Name>HeuristicLab.Core</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
82      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
83      <Name>HeuristicLab.Data</Name>
84    </ProjectReference>
85    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
86      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
87      <Name>HeuristicLab.Evolutionary</Name>
88    </ProjectReference>
89    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
90      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
91      <Name>HeuristicLab.PluginInfrastructure</Name>
92    </ProjectReference>
[85]93    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
94      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
95      <Name>HeuristicLab.Random</Name>
96    </ProjectReference>
[2]97  </ItemGroup>
98  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
99  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
100       Other similar extension points exist, see Microsoft.Common.targets.
101  <Target Name="BeforeBuild">
102  </Target>
103  <Target Name="AfterBuild">
104  </Target>
105  -->
[30]106  <PropertyGroup>
107    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
108  </PropertyGroup>
[2]109</Project>
Note: See TracBrowser for help on using the repository browser.