Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators/HeuristicLab.Operators.csproj @ 46

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

Closed ticket #46

  • renamed MultiHeuristicBranch to StochasticMultiBranch
  • added description and license information
File size: 5.6 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>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Operators</RootNamespace>
11    <AssemblyName>HeuristicLab.Operators</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    <DocumentationFile>
29    </DocumentationFile>
30  </PropertyGroup>
31  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32    <DebugType>pdbonly</DebugType>
33    <Optimize>true</Optimize>
34    <OutputPath>bin\Release\</OutputPath>
35    <DefineConstants>TRACE</DefineConstants>
36    <ErrorReport>prompt</ErrorReport>
37    <WarningLevel>4</WarningLevel>
38    <DocumentationFile>bin\Release\HeuristicLab.Operators.XML</DocumentationFile>
39    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
40  </PropertyGroup>
41  <ItemGroup>
42    <Reference Include="System" />
43    <Reference Include="System.Data" />
44    <Reference Include="System.Drawing" />
45    <Reference Include="System.Windows.Forms" />
46    <Reference Include="System.Xml" />
47  </ItemGroup>
48  <ItemGroup>
49    <Compile Include="CombinedOperator.cs" />
50    <Compile Include="CombinedOperatorView.cs">
51      <SubType>UserControl</SubType>
52    </Compile>
53    <Compile Include="CombinedOperatorView.Designer.cs">
54      <DependentUpon>CombinedOperatorView.cs</DependentUpon>
55    </Compile>
56    <Compile Include="ComparatorBase.cs" />
57    <Compile Include="ConditionalBranch.cs">
58      <SubType>Code</SubType>
59    </Compile>
60    <Compile Include="StochasticMultiBranch.cs" />
61    <Compile Include="SubScopesMixer.cs" />
62    <Compile Include="DataCollector.cs" />
63    <Compile Include="EqualToComparator.cs" />
64    <Compile Include="GreaterOrEqualThanComparator.cs" />
65    <Compile Include="GreaterThanComparator.cs" />
66    <Compile Include="LessOrEqualThanComparator.cs" />
67    <Compile Include="LessThanComparator.cs" />
68    <Compile Include="OperatorExtractor.cs" />
69    <Compile Include="ParallelProcessor.cs" />
70    <Compile Include="EmptyOperator.cs" />
71    <Compile Include="SequentialProcessor.cs" />
72    <Compile Include="SingleObjectiveEvaluatorBase.cs" />
73    <Compile Include="Sorter.cs" />
74    <Compile Include="StochasticBranch.cs" />
75    <Compile Include="UnequalToComparator.cs" />
76    <Compile Include="UniformSequentialSubScopesProcessor.cs" />
77    <Compile Include="UniformParallelSubScopesProcessor.cs" />
78    <Compile Include="ParallelSubScopesProcessor.cs" />
79    <Compile Include="SequentialSubScopesProcessor.cs" />
80    <Compile Include="SubScopesCreater.cs" />
81    <Compile Include="Counter.cs" />
82    <Compile Include="HeuristicLabOperatorsPlugin.cs" />
83    <Compile Include="Properties\AssemblyInfo.cs" />
84    <Compile Include="VariableInjector.cs" />
85    <Compile Include="VariableInjectorView.cs">
86      <SubType>UserControl</SubType>
87    </Compile>
88    <Compile Include="VariableInjectorView.Designer.cs">
89      <DependentUpon>VariableInjectorView.cs</DependentUpon>
90    </Compile>
91  </ItemGroup>
92  <ItemGroup>
93    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
94      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
95      <Name>HeuristicLab.Constraints</Name>
96    </ProjectReference>
97    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
98      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
99      <Name>HeuristicLab.Core</Name>
100    </ProjectReference>
101    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
102      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
103      <Name>HeuristicLab.Data</Name>
104    </ProjectReference>
105    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
106      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
107      <Name>HeuristicLab.PluginInfrastructure</Name>
108    </ProjectReference>
109  </ItemGroup>
110  <ItemGroup>
111    <None Include="HeuristicLab.snk" />
112    <None Include="Properties\AssemblyInfo.frame" />
113  </ItemGroup>
114  <ItemGroup>
115    <EmbeddedResource Include="CombinedOperatorView.resx">
116      <DependentUpon>CombinedOperatorView.cs</DependentUpon>
117      <SubType>Designer</SubType>
118    </EmbeddedResource>
119  </ItemGroup>
120  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
121  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
122       Other similar extension points exist, see Microsoft.Common.targets.
123  <Target Name="BeforeBuild">
124  </Target>
125  <Target Name="AfterBuild">
126  </Target>
127  -->
128  <PropertyGroup>
129    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
130  </PropertyGroup>
131</Project>
Note: See TracBrowser for help on using the repository browser.