Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Permutation/HeuristicLab.Permutation.csproj @ 30

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

Fixed ticket #26

  • added automatic generation of version strings for all projects using the SVN tool SubWCRev
File size: 4.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>{55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Permutation</RootNamespace>
11    <AssemblyName>HeuristicLab.Permutation</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.Permutation.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="AbsolutePositionTopologicalCrossover.cs" />
46    <Compile Include="CosaCrossover.cs">
47      <SubType>Code</SubType>
48    </Compile>
49    <Compile Include="CyclicCrossover.cs">
50      <SubType>Code</SubType>
51    </Compile>
52    <Compile Include="EdgeRecombinationCrossover.cs">
53      <SubType>Code</SubType>
54    </Compile>
55    <Compile Include="InsertionManipulator.cs" />
56    <Compile Include="InversionManipulator.cs" />
57    <Compile Include="MaximalPreservativeCrossover.cs">
58      <SubType>Code</SubType>
59    </Compile>
60    <Compile Include="OrderBasedCrossover.cs">
61      <SubType>Code</SubType>
62    </Compile>
63    <Compile Include="OrderCrossover.cs">
64      <SubType>Code</SubType>
65    </Compile>
66    <Compile Include="PartiallyMatchedCrossover.cs">
67      <SubType>Code</SubType>
68    </Compile>
69    <Compile Include="PermutationCrossoverBase.cs" />
70    <Compile Include="HeuristicLabPermutationPlugin.cs" />
71    <Compile Include="Permutation.cs" />
72    <Compile Include="PermutationManipulatorBase.cs" />
73    <Compile Include="PositionBasedCrossover.cs">
74      <SubType>Code</SubType>
75    </Compile>
76    <Compile Include="Properties\AssemblyInfo.cs" />
77    <Compile Include="RandomPermutationGenerator.cs" />
78    <Compile Include="ScrambleManipulator.cs" />
79    <Compile Include="Swap2Manipulator.cs" />
80    <Compile Include="Swap3Manipulator.cs" />
81    <Compile Include="TranslocationInversionManipulator.cs" />
82    <Compile Include="TranslocationManipulator.cs" />
83  </ItemGroup>
84  <ItemGroup>
85    <None Include="HeuristicLab.snk" />
86    <None Include="Properties\AssemblyInfo.frame" />
87  </ItemGroup>
88  <ItemGroup>
89    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
90      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
91      <Name>HeuristicLab.Core</Name>
92    </ProjectReference>
93    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
94      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
95      <Name>HeuristicLab.Data</Name>
96    </ProjectReference>
97    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
98      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
99      <Name>HeuristicLab.Evolutionary</Name>
100    </ProjectReference>
101    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
102      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
103      <Name>HeuristicLab.PluginInfrastructure</Name>
104    </ProjectReference>
105  </ItemGroup>
106  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
107  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108       Other similar extension points exist, see Microsoft.Common.targets.
109  <Target Name="BeforeBuild">
110  </Target>
111  <Target Name="AfterBuild">
112  </Target>
113  -->
114  <PropertyGroup>
115    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
116  </PropertyGroup>
117</Project>
Note: See TracBrowser for help on using the repository browser.