Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj @ 584

Last change on this file since 584 was 584, checked in by abeham, 16 years ago

merged communication framework to trunk (ticket #279)

File size: 7.2 KB
Line 
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.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{32DAA44F-944A-465F-A5C9-1C491EE4976D}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.SimOpt</RootNamespace>
12    <AssemblyName>HeuristicLab.SimOpt-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</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  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="System" />
37    <Reference Include="System.Core">
38      <RequiredTargetFramework>3.5</RequiredTargetFramework>
39    </Reference>
40    <Reference Include="System.Drawing" />
41    <Reference Include="System.Windows.Forms" />
42    <Reference Include="System.Xml.Linq">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data.DataSetExtensions">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Data" />
49    <Reference Include="System.Xml" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="DefaultInitializer.cs" />
53    <Compile Include="DefaultManipulator.cs" />
54    <Compile Include="NormalDoubleManipulator.cs" />
55    <Compile Include="NormalIntManipulator.cs" />
56    <Compile Include="PermutationParameterCyclicCrossover.cs" />
57    <Compile Include="PermutationParameterOrderCrossover.cs" />
58    <Compile Include="PermutationParameterPartiallyMatchedCrossover.cs" />
59    <Compile Include="SimOptCrossoverBase.cs" />
60    <Compile Include="SimOptSequentialSubOperatorProcessor.cs" />
61    <Compile Include="SimOptSquentialSubOperatorCrossover.cs" />
62    <Compile Include="SubScopesRemover.cs" />
63    <Compile Include="Swap2PermutationManipulator.cs" />
64    <Compile Include="RandomDoubleInitializer.cs" />
65    <Compile Include="RandomPermutationInitializer.cs" />
66    <Compile Include="SimOptInitializationOperatorBase.cs" />
67    <Compile Include="SimOptManipulationOperatorBase.cs" />
68    <Compile Include="DoubleParameterBoundConstraint.cs" />
69    <Compile Include="DoubleParameterBoundConstraintView.cs">
70      <SubType>UserControl</SubType>
71    </Compile>
72    <Compile Include="DoubleParameterBoundConstraintView.Designer.cs">
73      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
74    </Compile>
75    <Compile Include="HeuristicLabSimOptPlugin.cs" />
76    <Compile Include="Properties\AssemblyInfo.cs" />
77    <Compile Include="SimOptDiscreteMultiCrossover.cs" />
78    <Compile Include="SimOptParameterExtractor.cs">
79      <SubType>Code</SubType>
80    </Compile>
81    <Compile Include="SimOptParameterPacker.cs" />
82    <Compile Include="SimOptProblemInjector.cs" />
83    <Compile Include="SimOptProblemInjectorView.cs">
84      <SubType>UserControl</SubType>
85    </Compile>
86    <Compile Include="SimOptProblemInjectorView.Designer.cs">
87      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
88    </Compile>
89    <Compile Include="SimOptSinglePointCrossover.cs" />
90    <Compile Include="TranslocationPermutationAdaptiveManipulator.cs" />
91    <Compile Include="TranslocationPermutationManipulator.cs">
92      <SubType>Code</SubType>
93    </Compile>
94    <Compile Include="UniformIntInitializer.cs" />
95  </ItemGroup>
96  <ItemGroup>
97    <None Include="HeuristicLab.snk" />
98  </ItemGroup>
99  <ItemGroup>
100    <EmbeddedResource Include="DoubleParameterBoundConstraintView.resx">
101      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
102      <SubType>Designer</SubType>
103    </EmbeddedResource>
104    <EmbeddedResource Include="SimOptProblemInjectorView.resx">
105      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
106      <SubType>Designer</SubType>
107    </EmbeddedResource>
108  </ItemGroup>
109  <ItemGroup>
110    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
111      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
112      <Name>HeuristicLab.Constraints</Name>
113    </ProjectReference>
114    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
115      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
116      <Name>HeuristicLab.Core</Name>
117    </ProjectReference>
118    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
119      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
120      <Name>HeuristicLab.Data</Name>
121    </ProjectReference>
122    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
123      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
124      <Name>HeuristicLab.Evolutionary</Name>
125    </ProjectReference>
126    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
127      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
128      <Name>HeuristicLab.Operators</Name>
129    </ProjectReference>
130    <ProjectReference Include="..\HeuristicLab.Permutation\HeuristicLab.Permutation.csproj">
131      <Project>{55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}</Project>
132      <Name>HeuristicLab.Permutation</Name>
133    </ProjectReference>
134    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
135      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
136      <Name>HeuristicLab.PluginInfrastructure</Name>
137    </ProjectReference>
138    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
139      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
140      <Name>HeuristicLab.Random</Name>
141    </ProjectReference>
142  </ItemGroup>
143  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
144  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
145       Other similar extension points exist, see Microsoft.Common.targets.
146  <Target Name="BeforeBuild">
147  </Target>
148  <Target Name="AfterBuild">
149  </Target>
150  -->
151  <PropertyGroup>
152    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
153    <PostBuildEvent>
154    </PostBuildEvent>
155  </PropertyGroup>
156</Project>
Note: See TracBrowser for help on using the repository browser.