Free cookie consent management tool by TermsFeed Policy Generator

source: branches/XmlTextReaderBranch/HeuristicLab.StructureIdentification/HeuristicLab.StructureIdentification.csproj @ 123

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

Moved abstract operator DelegatingOperator from StructureIdentification to Operators. And removed code duplication.
See ticket #55.

File size: 6.8 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>{5948F299-0A5E-43B9-8F17-2D15298EEC34}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.StructureIdentification</RootNamespace>
11    <AssemblyName>HeuristicLab.StructureIdentification</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <DocumentationFile>bin\Release\HeuristicLab.StructureIdentification.XML</DocumentationFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core">
42      <RequiredTargetFramework>3.5</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Data" />
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.XML" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="Evaluation\CoefficientOfDeterminationEvaluator.cs" />
51    <Compile Include="Evaluation\FunctionEvaluator.cs">
52      <SubType>Code</SubType>
53    </Compile>
54    <Compile Include="Evaluation\MeanSquaredErrorEvaluator.cs" />
55    <Compile Include="Evaluation\VarianceAccountedForEvaluator.cs" />
56    <Compile Include="GPOperatorGroup.cs" />
57    <Compile Include="GPOperatorLibrary.cs" />
58    <Compile Include="GPOperatorLibraryEditor.cs">
59      <SubType>UserControl</SubType>
60    </Compile>
61    <Compile Include="GPOperatorLibraryEditor.designer.cs">
62      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
63    </Compile>
64    <Compile Include="Manipulation\ChangeNodeTypeManipulation.cs" />
65    <Compile Include="Manipulation\CutOutNodeManipulation.cs" />
66    <Compile Include="Manipulation\DeleteSubTreeManipulation.cs" />
67    <Compile Include="Manipulation\FullTreeShaker.cs" />
68    <Compile Include="Manipulation\OnePointShaker.cs" />
69    <Compile Include="Manipulation\SubstituteSubTreeManipulation.cs" />
70    <Compile Include="PopulationAnalyser.cs" />
71    <Compile Include="HeuristicLabStructureIdentificationPlugin.cs" />
72    <Compile Include="Properties\AssemblyInfo.cs" />
73    <Compile Include="RandomTreeCreator.cs" />
74    <Compile Include="Recombination\SinglePointCrossOver.cs" />
75    <Compile Include="TreeGardener.cs" />
76    <Compile Include="StructIdProblemInjector.cs" />
77    <Compile Include="StructIdProblemInjectorView.cs">
78      <SubType>UserControl</SubType>
79    </Compile>
80    <Compile Include="StructIdProblemInjectorView.Designer.cs">
81      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
82    </Compile>
83  </ItemGroup>
84  <ItemGroup>
85    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
86      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
87      <Name>HeuristicLab.Constraints</Name>
88    </ProjectReference>
89    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
90      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
91      <Name>HeuristicLab.Core</Name>
92    </ProjectReference>
93    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
94      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
95      <Name>HeuristicLab.DataAnalysis</Name>
96    </ProjectReference>
97    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
98      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
99      <Name>HeuristicLab.Data</Name>
100    </ProjectReference>
101    <ProjectReference Include="..\HeuristicLab.Functions\HeuristicLab.Functions.csproj">
102      <Project>{B95CA6E2-34BC-4430-994D-BD6E99375319}</Project>
103      <Name>HeuristicLab.Functions</Name>
104    </ProjectReference>
105    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
106      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
107      <Name>HeuristicLab.Operators</Name>
108    </ProjectReference>
109    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
110      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
111      <Name>HeuristicLab.PluginInfrastructure</Name>
112    </ProjectReference>
113    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
114      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
115      <Name>HeuristicLab.Random</Name>
116    </ProjectReference>
117    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
118      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
119      <Name>HeuristicLab.Selection</Name>
120    </ProjectReference>
121  </ItemGroup>
122  <ItemGroup>
123    <None Include="HeuristicLab.snk" />
124    <None Include="Properties\AssemblyInfo.frame" />
125  </ItemGroup>
126  <ItemGroup>
127    <EmbeddedResource Include="GPOperatorLibraryEditor.resx">
128      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
129      <SubType>Designer</SubType>
130    </EmbeddedResource>
131    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
132      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
133      <SubType>Designer</SubType>
134    </EmbeddedResource>
135  </ItemGroup>
136  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
137  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
138       Other similar extension points exist, see Microsoft.Common.targets.
139  <Target Name="BeforeBuild">
140  </Target>
141  <Target Name="AfterBuild">
142  </Target>
143  -->
144  <PropertyGroup>
145    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
146  </PropertyGroup>
147</Project>
Note: See TracBrowser for help on using the repository browser.