Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Collections/sources/HeuristicLab.Operators/HeuristicLab.Operators.csproj @ 755

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

Added DoubleCounter which counts a double (by a given interval) -> ticket #165

File size: 6.2 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="AddVariableInfoDialog.cs">
50      <SubType>Form</SubType>
51    </Compile>
52    <Compile Include="AddVariableInfoDialog.Designer.cs">
53      <DependentUpon>AddVariableInfoDialog.cs</DependentUpon>
54    </Compile>
55    <Compile Include="CombinedOperator.cs" />
56    <Compile Include="CombinedOperatorView.cs">
57      <SubType>UserControl</SubType>
58    </Compile>
59    <Compile Include="CombinedOperatorView.Designer.cs">
60      <DependentUpon>CombinedOperatorView.cs</DependentUpon>
61    </Compile>
62    <Compile Include="ComparatorBase.cs" />
63    <Compile Include="ConditionalBranch.cs">
64      <SubType>Code</SubType>
65    </Compile>
66    <Compile Include="DelegatingOperator.cs" />
67    <Compile Include="DoubleCounter.cs" />
68    <Compile Include="ScopeCleaner.cs" />
69    <Compile Include="StochasticMultiBranch.cs" />
70    <Compile Include="SubScopesMixer.cs" />
71    <Compile Include="DataCollector.cs" />
72    <Compile Include="EqualToComparator.cs" />
73    <Compile Include="GreaterOrEqualThanComparator.cs" />
74    <Compile Include="GreaterThanComparator.cs" />
75    <Compile Include="LessOrEqualThanComparator.cs" />
76    <Compile Include="LessThanComparator.cs" />
77    <Compile Include="OperatorExtractor.cs" />
78    <Compile Include="ParallelProcessor.cs" />
79    <Compile Include="EmptyOperator.cs" />
80    <Compile Include="SequentialProcessor.cs" />
81    <Compile Include="SingleObjectiveEvaluatorBase.cs" />
82    <Compile Include="Sorter.cs" />
83    <Compile Include="StochasticBranch.cs" />
84    <Compile Include="UnequalToComparator.cs" />
85    <Compile Include="UniformSequentialSubScopesProcessor.cs" />
86    <Compile Include="UniformParallelSubScopesProcessor.cs" />
87    <Compile Include="ParallelSubScopesProcessor.cs" />
88    <Compile Include="SequentialSubScopesProcessor.cs" />
89    <Compile Include="SubScopesCreater.cs" />
90    <Compile Include="Counter.cs" />
91    <Compile Include="HeuristicLabOperatorsPlugin.cs" />
92    <Compile Include="Properties\AssemblyInfo.cs" />
93    <Compile Include="VariableInjector.cs" />
94    <Compile Include="VariableInjectorView.cs">
95      <SubType>UserControl</SubType>
96    </Compile>
97    <Compile Include="VariableInjectorView.Designer.cs">
98      <DependentUpon>VariableInjectorView.cs</DependentUpon>
99    </Compile>
100  </ItemGroup>
101  <ItemGroup>
102    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
103      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
104      <Name>HeuristicLab.Constraints</Name>
105    </ProjectReference>
106    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
107      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
108      <Name>HeuristicLab.Core</Name>
109    </ProjectReference>
110    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
111      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
112      <Name>HeuristicLab.Data</Name>
113    </ProjectReference>
114    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
115      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
116      <Name>HeuristicLab.PluginInfrastructure</Name>
117    </ProjectReference>
118  </ItemGroup>
119  <ItemGroup>
120    <None Include="HeuristicLab.snk" />
121    <None Include="Properties\AssemblyInfo.frame" />
122  </ItemGroup>
123  <ItemGroup>
124    <EmbeddedResource Include="AddVariableInfoDialog.resx">
125      <DependentUpon>AddVariableInfoDialog.cs</DependentUpon>
126      <SubType>Designer</SubType>
127    </EmbeddedResource>
128    <EmbeddedResource Include="CombinedOperatorView.resx">
129      <DependentUpon>CombinedOperatorView.cs</DependentUpon>
130      <SubType>Designer</SubType>
131    </EmbeddedResource>
132  </ItemGroup>
133  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
134  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
135       Other similar extension points exist, see Microsoft.Common.targets.
136  <Target Name="BeforeBuild">
137  </Target>
138  <Target Name="AfterBuild">
139  </Target>
140  -->
141  <PropertyGroup>
142    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
143  </PropertyGroup>
144</Project>
Note: See TracBrowser for help on using the repository browser.