Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3.csproj @ 3360

Last change on this file since 3360 was 3360, checked in by gkronber, 14 years ago

Fixed bugs in ADF operators and added test classes for ADF operators. #290 (Implement ADFs)

File size: 9.6 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>{125D3006-67F5-48CB-913E-73C0548F17FA}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding</RootNamespace>
12    <AssemblyName>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3</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    <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
37    <DebugSymbols>true</DebugSymbols>
38    <OutputPath>bin\x64\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <DebugType>full</DebugType>
41    <PlatformTarget>x64</PlatformTarget>
42    <ErrorReport>prompt</ErrorReport>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
45    <OutputPath>bin\x64\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <Optimize>true</Optimize>
48    <DebugType>pdbonly</DebugType>
49    <PlatformTarget>x64</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51  </PropertyGroup>
52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
53    <DebugSymbols>true</DebugSymbols>
54    <OutputPath>bin\x86\Debug\</OutputPath>
55    <DefineConstants>DEBUG;TRACE</DefineConstants>
56    <DebugType>full</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58    <ErrorReport>prompt</ErrorReport>
59  </PropertyGroup>
60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
61    <OutputPath>bin\x86\Release\</OutputPath>
62    <DefineConstants>TRACE</DefineConstants>
63    <Optimize>true</Optimize>
64    <DebugType>pdbonly</DebugType>
65    <PlatformTarget>x86</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
67  </PropertyGroup>
68  <ItemGroup>
69    <Reference Include="System" />
70    <Reference Include="System.Core">
71      <RequiredTargetFramework>3.5</RequiredTargetFramework>
72    </Reference>
73    <Reference Include="System.Drawing" />
74    <Reference Include="System.Windows.Forms" />
75    <Reference Include="System.Xml.Linq">
76      <RequiredTargetFramework>3.5</RequiredTargetFramework>
77    </Reference>
78    <Reference Include="System.Data.DataSetExtensions">
79      <RequiredTargetFramework>3.5</RequiredTargetFramework>
80    </Reference>
81    <Reference Include="System.Data" />
82    <Reference Include="System.Xml" />
83  </ItemGroup>
84  <ItemGroup>
85    <Compile Include="ArchitectureAlteringOperators\ArgumentCreater.cs" />
86    <Compile Include="ArchitectureAlteringOperators\ArgumentDeleter.cs" />
87    <Compile Include="ArchitectureAlteringOperators\ArgumentDuplicater.cs" />
88    <Compile Include="ArchitectureAlteringOperators\GrammarModifier.cs" />
89    <Compile Include="ArchitectureAlteringOperators\RandomArchitectureAlteringOperator.cs" />
90    <Compile Include="ArchitectureAlteringOperators\SubroutineCreater.cs">
91      <SubType>Code</SubType>
92    </Compile>
93    <Compile Include="ArchitectureAlteringOperators\SubroutineDeleter.cs" />
94    <Compile Include="ArchitectureAlteringOperators\SubroutineDuplicater.cs" />
95    <Compile Include="SymbolicExpressionTreeTopLevelNode.cs" />
96    <Compile Include="Crossovers\SubtreeCrossover.cs">
97      <SubType>Code</SubType>
98    </Compile>
99    <Compile Include="GlobalSymbolicExpressionGrammar.cs" />
100    <Compile Include="EnumerableExtensions.cs" />
101    <Compile Include="Symbols\StartSymbolTreeNode.cs" />
102    <Compile Include="DefaultSymbolicExpressionGrammar.cs">
103      <SubType>Code</SubType>
104    </Compile>
105    <Compile Include="SymbolicExpressionTreeArchitectureAlteringOperator.cs" />
106    <Compile Include="SymbolicExpressionTreeOperator.cs" />
107    <Compile Include="Instruction.cs" />
108    <Compile Include="SymbolicExpressionTreeCompiler.cs" />
109    <Compile Include="SymbolicExpressionTreeManipulator.cs" />
110    <Compile Include="SymbolicExpressionTreeTerminalNode.cs" />
111    <Compile Include="Interfaces\ISymbolicExpressionGrammar.cs" />
112    <Compile Include="Creators\ProbabilisticTreeCreator.cs" />
113    <Compile Include="HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs" />
114    <Compile Include="Interfaces\ISymbolicExpressionTreeOperator.cs" />
115    <Compile Include="SymbolicExpressionTreeCreator.cs" />
116    <Compile Include="SymbolicExpressionTree.cs" />
117    <Compile Include="Properties\AssemblyInfo.cs" />
118    <Compile Include="Symbol.cs" />
119    <Compile Include="SymbolicExpressionTreeCrossover.cs" />
120    <Compile Include="SymbolicExpressionTreeNode.cs" />
121    <Compile Include="Symbols\Addition.cs" />
122    <Compile Include="Symbols\Argument.cs" />
123    <Compile Include="Symbols\ArgumentTreeNode.cs" />
124    <Compile Include="Symbols\StartSymbol.cs" />
125    <Compile Include="Symbols\InvokeFunction.cs" />
126    <Compile Include="Symbols\InvokeFunctionTreeNode.cs" />
127    <Compile Include="Symbols\DefunTreeNode.cs" />
128    <Compile Include="Symbols\Defun.cs" />
129    <Compile Include="Symbols\ProgramRootSymbol.cs" />
130    <Compile Include="Symbols\Division.cs" />
131    <Compile Include="Symbols\Multiplication.cs" />
132    <Compile Include="Symbols\Subtraction.cs" />
133  </ItemGroup>
134  <ItemGroup>
135    <None Include="HeuristicLab.snk" />
136    <None Include="HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs.frame" />
137    <None Include="Properties\AssemblyInfo.frame" />
138  </ItemGroup>
139  <ItemGroup>
140    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
141      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
142      <Name>HeuristicLab.Collections-3.3</Name>
143    </ProjectReference>
144    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
145      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
146      <Name>HeuristicLab.Core-3.3</Name>
147    </ProjectReference>
148    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
149      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
150      <Name>HeuristicLab.Data-3.3</Name>
151    </ProjectReference>
152    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
153      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
154      <Name>HeuristicLab.Operators-3.3</Name>
155    </ProjectReference>
156    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
157      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
158      <Name>HeuristicLab.Optimization-3.3</Name>
159    </ProjectReference>
160    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
161      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
162      <Name>HeuristicLab.Parameters-3.3</Name>
163    </ProjectReference>
164    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
165      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
166      <Name>HeuristicLab.Persistence-3.3</Name>
167    </ProjectReference>
168    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
169      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
170      <Name>HeuristicLab.PluginInfrastructure</Name>
171    </ProjectReference>
172    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
173      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
174      <Name>HeuristicLab.Random-3.3</Name>
175    </ProjectReference>
176  </ItemGroup>
177  <ItemGroup>
178    <Folder Include="Manipulators\" />
179  </ItemGroup>
180  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
181  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
182       Other similar extension points exist, see Microsoft.Common.targets.
183  <Target Name="BeforeBuild">
184  </Target>
185  <Target Name="AfterBuild">
186  </Target>
187  -->
188  <PropertyGroup>
189    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
190set ProjectDir=$(ProjectDir)
191set SolutionDir=$(SolutionDir)
192set Outdir=$(Outdir)
193
194call PreBuildEvent.cmd
195SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs"</PreBuildEvent>
196  </PropertyGroup>
197</Project>
Note: See TracBrowser for help on using the repository browser.