Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj @ 13028

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

removed senseless service references

File size: 7.7 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</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="HeuristicLab.Constraints, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>..\HeuristicLab.Constraints\bin\Debug\HeuristicLab.Constraints.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Core, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
41      <SpecificVersion>False</SpecificVersion>
42      <HintPath>..\HeuristicLab.Core\bin\Debug\HeuristicLab.Core.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Data, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
45      <SpecificVersion>False</SpecificVersion>
46      <HintPath>..\HeuristicLab.Data\bin\Debug\HeuristicLab.Data.dll</HintPath>
47    </Reference>
48    <Reference Include="HeuristicLab.Evolutionary, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
49      <SpecificVersion>False</SpecificVersion>
50      <HintPath>..\HeuristicLab.Evolutionary\bin\Debug\HeuristicLab.Evolutionary.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Operators, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
53      <SpecificVersion>False</SpecificVersion>
54      <HintPath>..\HeuristicLab.Operators\bin\Debug\HeuristicLab.Operators.dll</HintPath>
55    </Reference>
56    <Reference Include="HeuristicLab.Permutation, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
57      <SpecificVersion>False</SpecificVersion>
58      <HintPath>..\HeuristicLab.Permutation\bin\Debug\HeuristicLab.Permutation.dll</HintPath>
59    </Reference>
60    <Reference Include="HeuristicLab.Random, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
61      <SpecificVersion>False</SpecificVersion>
62      <HintPath>..\HeuristicLab.Random\bin\Debug\HeuristicLab.Random.dll</HintPath>
63    </Reference>
64    <Reference Include="System" />
65    <Reference Include="System.Core">
66      <RequiredTargetFramework>3.5</RequiredTargetFramework>
67    </Reference>
68    <Reference Include="System.Drawing" />
69    <Reference Include="System.Windows.Forms" />
70    <Reference Include="System.Xml.Linq">
71      <RequiredTargetFramework>3.5</RequiredTargetFramework>
72    </Reference>
73    <Reference Include="System.Data.DataSetExtensions">
74      <RequiredTargetFramework>3.5</RequiredTargetFramework>
75    </Reference>
76    <Reference Include="System.Data" />
77    <Reference Include="System.Xml" />
78  </ItemGroup>
79  <ItemGroup>
80    <Compile Include="DefaultInitializer.cs" />
81    <Compile Include="DefaultManipulator.cs" />
82    <Compile Include="NormalDoubleManipulator.cs" />
83    <Compile Include="NormalIntManipulator.cs" />
84    <Compile Include="PermutationParameterCyclicCrossover.cs" />
85    <Compile Include="PermutationParameterOrderCrossover.cs" />
86    <Compile Include="PermutationParameterPartiallyMatchedCrossover.cs" />
87    <Compile Include="SimOptCrossoverBase.cs" />
88    <Compile Include="SimOptSequentialSubOperatorProcessor.cs" />
89    <Compile Include="SimOptSquentialSubOperatorCrossover.cs" />
90    <Compile Include="SubScopesRemover.cs" />
91    <Compile Include="Swap2PermutationManipulator.cs" />
92    <Compile Include="RandomDoubleInitializer.cs" />
93    <Compile Include="RandomPermutationInitializer.cs" />
94    <Compile Include="SimOptInitializationOperatorBase.cs" />
95    <Compile Include="SimOptManipulationOperatorBase.cs" />
96    <Compile Include="DoubleParameterBoundConstraint.cs" />
97    <Compile Include="DoubleParameterBoundConstraintView.cs">
98      <SubType>UserControl</SubType>
99    </Compile>
100    <Compile Include="DoubleParameterBoundConstraintView.Designer.cs">
101      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
102    </Compile>
103    <Compile Include="HeuristicLabSimOptPlugin.cs" />
104    <Compile Include="Properties\AssemblyInfo.cs" />
105    <Compile Include="SimOptDiscreteMultiCrossover.cs" />
106    <Compile Include="SimOptParameterExtractor.cs">
107      <SubType>Code</SubType>
108    </Compile>
109    <Compile Include="SimOptParameterPacker.cs" />
110    <Compile Include="SimOptProblemInjector.cs" />
111    <Compile Include="SimOptProblemInjectorView.cs">
112      <SubType>UserControl</SubType>
113    </Compile>
114    <Compile Include="SimOptProblemInjectorView.Designer.cs">
115      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
116    </Compile>
117    <Compile Include="SimOptSinglePointCrossover.cs" />
118    <Compile Include="TranslocationPermutationAdaptiveManipulator.cs" />
119    <Compile Include="TranslocationPermutationManipulator.cs">
120      <SubType>Code</SubType>
121    </Compile>
122    <Compile Include="UniformIntInitializer.cs" />
123  </ItemGroup>
124  <ItemGroup>
125    <None Include="HeuristicLab.snk" />
126  </ItemGroup>
127  <ItemGroup>
128    <EmbeddedResource Include="DoubleParameterBoundConstraintView.resx">
129      <DependentUpon>DoubleParameterBoundConstraintView.cs</DependentUpon>
130      <SubType>Designer</SubType>
131    </EmbeddedResource>
132    <EmbeddedResource Include="SimOptProblemInjectorView.resx">
133      <DependentUpon>SimOptProblemInjectorView.cs</DependentUpon>
134      <SubType>Designer</SubType>
135    </EmbeddedResource>
136  </ItemGroup>
137  <ItemGroup>
138    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
139      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
140      <Name>HeuristicLab.PluginInfrastructure</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.