Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3999 was 3999, checked in by mkommend, 14 years ago

corrected project files for changeset r3997 and r3998 (ticket #1073)

File size: 11.2 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="Analyzers\MinAverageMaxSymbolicExpressionTreeSizeAnalyzer.cs" />
86    <Compile Include="Analyzers\SymbolicExpressionTreeSizeCalculator.cs" />
87    <Compile Include="ArchitectureManipulators\ArgumentCreater.cs" />
88    <Compile Include="ArchitectureManipulators\ArgumentDeleter.cs" />
89    <Compile Include="ArchitectureManipulators\ArgumentDuplicater.cs" />
90    <Compile Include="ArchitectureManipulators\GrammarModifier.cs" />
91    <Compile Include="ArchitectureManipulators\MultiSymbolicExpressionTreeArchitectureManipulator.cs" />
92    <Compile Include="ArchitectureManipulators\SubroutineCreater.cs" />
93    <Compile Include="ArchitectureManipulators\SubroutineDeleter.cs" />
94    <Compile Include="ArchitectureManipulators\SubroutineDuplicater.cs" />
95    <Compile Include="ArchitectureManipulators\SymbolicExpressionTreeArchitectureManipulator.cs" />
96    <Compile Include="Compiler\Instruction.cs" />
97    <Compile Include="Compiler\SymbolicExpressionTreeCompiler.cs" />
98    <Compile Include="Creators\SymbolicExpressionTreeCreator.cs" />
99    <Compile Include="Crossovers\CrossoverPoint.cs" />
100    <Compile Include="Crossovers\SymbolicExpressionTreeCrossover.cs" />
101    <Compile Include="Interfaces\ISymbolicExpressionTreeAnalyzer.cs" />
102    <Compile Include="Interfaces\ISymbolicExpressionTreeArchitectureManipulator.cs" />
103    <Compile Include="Interfaces\ISymbolicExpressionTreeCreator.cs" />
104    <Compile Include="Interfaces\ISymbolicExpressionTreeCrossover.cs" />
105    <Compile Include="Manipulators\ChangeNodeTypeManipulation.cs" />
106    <Compile Include="Interfaces\ISymbolicExpressionTreeManipulator.cs" />
107    <Compile Include="Manipulators\FullTreeShaker.cs" />
108    <Compile Include="Manipulators\MultiSymbolicExpressionTreeManipulator.cs" />
109    <Compile Include="Manipulators\OnePointShaker.cs" />
110    <Compile Include="Manipulators\SymbolicExpressionTreeManipulator.cs" />
111    <Compile Include="SymbolicExpressionTreeStringFormatter.cs" />
112    <Compile Include="SymbolicExpressionTreeTopLevelNode.cs" />
113    <Compile Include="Crossovers\SubtreeCrossover.cs">
114      <SubType>Code</SubType>
115    </Compile>
116    <Compile Include="GlobalSymbolicExpressionGrammar.cs" />
117    <Compile Include="EnumerableExtensions.cs" />
118    <Compile Include="DefaultSymbolicExpressionGrammar.cs">
119      <SubType>Code</SubType>
120    </Compile>
121    <Compile Include="SymbolicExpressionTreeOperator.cs" />
122    <Compile Include="SymbolicExpressionTreeTerminalNode.cs" />
123    <Compile Include="Interfaces\ISymbolicExpressionGrammar.cs" />
124    <Compile Include="Creators\ProbabilisticTreeCreator.cs" />
125    <Compile Include="HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs" />
126    <Compile Include="Interfaces\ISymbolicExpressionTreeOperator.cs" />
127    <Compile Include="SymbolicExpressionTree.cs" />
128    <Compile Include="Properties\AssemblyInfo.cs" />
129    <Compile Include="SymbolicExpressionTreeNode.cs" />
130    <Compile Include="Symbols\Argument.cs" />
131    <Compile Include="Symbols\ArgumentTreeNode.cs" />
132    <Compile Include="Symbols\ReadOnlySymbol.cs" />
133    <Compile Include="Symbols\StartSymbol.cs" />
134    <Compile Include="Symbols\InvokeFunction.cs" />
135    <Compile Include="Symbols\InvokeFunctionTreeNode.cs" />
136    <Compile Include="Symbols\DefunTreeNode.cs" />
137    <Compile Include="Symbols\Defun.cs" />
138    <Compile Include="Symbols\ProgramRootSymbol.cs" />
139    <Compile Include="Symbols\Symbol.cs" />
140  </ItemGroup>
141  <ItemGroup>
142    <None Include="HeuristicLab.snk" />
143    <None Include="HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs.frame" />
144    <None Include="Properties\AssemblyInfo.frame" />
145  </ItemGroup>
146  <ItemGroup>
147    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
148      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
149      <Name>HeuristicLab.Analysis-3.3</Name>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
152      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
153      <Name>HeuristicLab.Collections-3.3</Name>
154    </ProjectReference>
155    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
156      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
157      <Name>HeuristicLab.Common.Resources-3.3</Name>
158    </ProjectReference>
159    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
160      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
161      <Name>HeuristicLab.Common-3.3</Name>
162    </ProjectReference>
163    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
164      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
165      <Name>HeuristicLab.Core-3.3</Name>
166    </ProjectReference>
167    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
168      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
169      <Name>HeuristicLab.Data-3.3</Name>
170    </ProjectReference>
171    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
172      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
173      <Name>HeuristicLab.Operators-3.3</Name>
174    </ProjectReference>
175    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
176      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
177      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
178    </ProjectReference>
179    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
180      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
181      <Name>HeuristicLab.Optimization-3.3</Name>
182    </ProjectReference>
183    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
184      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
185      <Name>HeuristicLab.Parameters-3.3</Name>
186    </ProjectReference>
187    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
188      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
189      <Name>HeuristicLab.Persistence-3.3</Name>
190    </ProjectReference>
191    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
192      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
193      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
194    </ProjectReference>
195    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
196      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
197      <Name>HeuristicLab.Random-3.3</Name>
198    </ProjectReference>
199  </ItemGroup>
200  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
201  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
202       Other similar extension points exist, see Microsoft.Common.targets.
203  <Target Name="BeforeBuild">
204  </Target>
205  <Target Name="AfterBuild">
206  </Target>
207  -->
208  <PropertyGroup>
209    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
210set ProjectDir=$(ProjectDir)
211set SolutionDir=$(SolutionDir)
212set Outdir=$(Outdir)
213
214call PreBuildEvent.cmd
215SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabEncodingsSymbolicExpressionTreeEncodingPlugin.cs"</PreBuildEvent>
216  </PropertyGroup>
217</Project>
Note: See TracBrowser for help on using the repository browser.