Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj @ 638

Last change on this file since 638 was 638, checked in by gkronber, 16 years ago

created a branch for changes needed to run HL3 on Mono 2.0
(ticket #298)

File size: 6.0 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.21022</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="SimOptCrossoverPreparator.cs" />
53    <Compile Include="SimOptSequentialSubOperatorProcessor.cs" />
54    <Compile Include="SimOptSquentialSubOperatorCrossover.cs" />
55    <Compile Include="DoubleParameterBoundConstraint.cs" />
56    <Compile Include="DoubleParameterBoundConstraintView.cs">
57      <SubType>UserControl</SubType>
58    </Compile>
59    <Compile Include="DoubleParameterBoundConstraintView.Designer.cs">
60      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
61    </Compile>
62    <Compile Include="HeuristicLabSimOptPlugin.cs" />
63    <Compile Include="Properties\AssemblyInfo.cs" />
64    <Compile Include="SimOptDiscreteMultiCrossover.cs" />
65    <Compile Include="SimOptParameterExtractor.cs">
66      <SubType>Code</SubType>
67    </Compile>
68    <Compile Include="SimOptParameterPacker.cs" />
69    <Compile Include="SimOptProblemInjector.cs" />
70    <Compile Include="SimOptProblemInjectorView.cs">
71      <SubType>UserControl</SubType>
72    </Compile>
73    <Compile Include="SimOptProblemInjectorView.Designer.cs">
74      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
75    </Compile>
76    <Compile Include="SimOptSinglePointCrossover.cs" />
77  </ItemGroup>
78  <ItemGroup>
79    <None Include="HeuristicLab.snk" />
80  </ItemGroup>
81  <ItemGroup>
82    <EmbeddedResource Include="DoubleParameterBoundConstraintView.resx">
83      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
84      <SubType>Designer</SubType>
85    </EmbeddedResource>
86    <EmbeddedResource Include="SimOptProblemInjectorView.resx">
87      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
88      <SubType>Designer</SubType>
89    </EmbeddedResource>
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
93      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
94      <Name>HeuristicLab.Constraints</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
97      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
98      <Name>HeuristicLab.Core</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
101      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
102      <Name>HeuristicLab.Data</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
105      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
106      <Name>HeuristicLab.Evolutionary</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
109      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
110      <Name>HeuristicLab.Operators</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
113      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
114      <Name>HeuristicLab.PluginInfrastructure</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
117      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
118      <Name>HeuristicLab.Selection</Name>
119    </ProjectReference>
120  </ItemGroup>
121  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
122  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
123       Other similar extension points exist, see Microsoft.Common.targets.
124  <Target Name="BeforeBuild">
125  </Target>
126  <Target Name="AfterBuild">
127  </Target>
128  -->
129  <PropertyGroup>
130    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
131    <PostBuildEvent>
132    </PostBuildEvent>
133  </PropertyGroup>
134</Project>
Note: See TracBrowser for help on using the repository browser.