Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Permutation/3.2/HeuristicLab.Permutation-3.2.csproj @ 1534

Last change on this file since 1534 was 1534, checked in by swagner, 15 years ago

Updated main solution file and fixed minor errors in names and version numbers of projects (#576)

File size: 6.8 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.30729</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-3.2</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-3.2.XML</DocumentationFile>
38  </PropertyGroup>
39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x86\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x86</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
48    <OutputPath>bin\x86\Release\</OutputPath>
49    <DefineConstants>TRACE</DefineConstants>
50    <DocumentationFile>bin\Release\HeuristicLab.Permutation-3.2.XML</DocumentationFile>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x86</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55  </PropertyGroup>
56  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
57    <DebugSymbols>true</DebugSymbols>
58    <OutputPath>bin\x64\Debug\</OutputPath>
59    <DefineConstants>DEBUG;TRACE</DefineConstants>
60    <DebugType>full</DebugType>
61    <PlatformTarget>x64</PlatformTarget>
62    <ErrorReport>prompt</ErrorReport>
63  </PropertyGroup>
64  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
65    <OutputPath>bin\x64\Release\</OutputPath>
66    <DefineConstants>TRACE</DefineConstants>
67    <DocumentationFile>bin\Release\HeuristicLab.Permutation-3.2.XML</DocumentationFile>
68    <Optimize>true</Optimize>
69    <DebugType>pdbonly</DebugType>
70    <PlatformTarget>x64</PlatformTarget>
71    <ErrorReport>prompt</ErrorReport>
72  </PropertyGroup>
73  <ItemGroup>
74    <Reference Include="System" />
75    <Reference Include="System.Data" />
76    <Reference Include="System.Xml" />
77  </ItemGroup>
78  <ItemGroup>
79    <Compile Include="AbsolutePositionTopologicalCrossover.cs" />
80    <Compile Include="CosaCrossover.cs">
81      <SubType>Code</SubType>
82    </Compile>
83    <Compile Include="CyclicCrossover.cs">
84      <SubType>Code</SubType>
85    </Compile>
86    <Compile Include="EdgeRecombinationCrossover.cs">
87      <SubType>Code</SubType>
88    </Compile>
89    <Compile Include="InsertionManipulator.cs" />
90    <Compile Include="InversionManipulator.cs" />
91    <Compile Include="MaximalPreservativeCrossover.cs">
92      <SubType>Code</SubType>
93    </Compile>
94    <Compile Include="OrderBasedCrossover.cs">
95      <SubType>Code</SubType>
96    </Compile>
97    <Compile Include="OrderCrossover.cs">
98      <SubType>Code</SubType>
99    </Compile>
100    <Compile Include="PartiallyMatchedCrossover.cs">
101      <SubType>Code</SubType>
102    </Compile>
103    <Compile Include="PermutationCrossoverBase.cs" />
104    <Compile Include="HeuristicLabPermutationPlugin.cs" />
105    <Compile Include="Permutation.cs" />
106    <Compile Include="PermutationManipulatorBase.cs" />
107    <Compile Include="PositionBasedCrossover.cs">
108      <SubType>Code</SubType>
109    </Compile>
110    <Compile Include="Properties\AssemblyInfo.cs" />
111    <Compile Include="RandomPermutationGenerator.cs" />
112    <Compile Include="ScrambleManipulator.cs" />
113    <Compile Include="Swap2Manipulator.cs" />
114    <Compile Include="Swap3Manipulator.cs" />
115    <Compile Include="TranslocationInversionManipulator.cs" />
116    <Compile Include="TranslocationManipulator.cs" />
117  </ItemGroup>
118  <ItemGroup>
119    <None Include="HeuristicLab.snk" />
120    <None Include="Properties\AssemblyInfo.frame" />
121  </ItemGroup>
122  <ItemGroup>
123    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
124      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
125      <Name>HeuristicLab.Core-3.2</Name>
126    </ProjectReference>
127    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
128      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
129      <Name>HeuristicLab.Data-3.2</Name>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Evolutionary\3.2\HeuristicLab.Evolutionary-3.2.csproj">
132      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
133      <Name>HeuristicLab.Evolutionary-3.2</Name>
134    </ProjectReference>
135    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
136      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
137      <Name>HeuristicLab.PluginInfrastructure</Name>
138    </ProjectReference>
139    <ProjectReference Include="..\..\HeuristicLab.Random\3.2\HeuristicLab.Random-3.2.csproj">
140      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
141      <Name>HeuristicLab.Random-3.2</Name>
142    </ProjectReference>
143  </ItemGroup>
144  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
145  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
146       Other similar extension points exist, see Microsoft.Common.targets.
147  <Target Name="BeforeBuild">
148  </Target>
149  <Target Name="AfterBuild">
150  </Target>
151  -->
152  <PropertyGroup>
153    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
154set ProjectDir=$(ProjectDir)
155set SolutionDir=$(SolutionDir)
156set Outdir=$(Outdir)
157
158call PreBuildEvent.cmd</PreBuildEvent>
159  </PropertyGroup>
160</Project>
Note: See TracBrowser for help on using the repository browser.