Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/HeuristicLab.Core-3.3.csproj @ 2932

Last change on this file since 2932 was 2932, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • replaced Changed in IItem by ToStringChanged
File size: 9.3 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.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{C36BD924-A541-4A00-AFA8-41701378DDC5}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Core</RootNamespace>
11    <AssemblyName>HeuristicLab.Core-3.3</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <PublishUrl>http://localhost/HeuristicLab.Core/</PublishUrl>
20    <Install>true</Install>
21    <InstallFrom>Web</InstallFrom>
22    <UpdateEnabled>true</UpdateEnabled>
23    <UpdateMode>Foreground</UpdateMode>
24    <UpdateInterval>7</UpdateInterval>
25    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
26    <UpdatePeriodically>false</UpdatePeriodically>
27    <UpdateRequired>false</UpdateRequired>
28    <MapFileExtensions>true</MapFileExtensions>
29    <ApplicationRevision>0</ApplicationRevision>
30    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31    <IsWebBootstrapper>true</IsWebBootstrapper>
32    <UseApplicationTrust>false</UseApplicationTrust>
33    <BootstrapperEnabled>true</BootstrapperEnabled>
34    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
37    <DebugSymbols>true</DebugSymbols>
38    <DebugType>full</DebugType>
39    <Optimize>false</Optimize>
40    <OutputPath>bin\Debug\</OutputPath>
41    <DefineConstants>DEBUG;TRACE</DefineConstants>
42    <ErrorReport>prompt</ErrorReport>
43    <WarningLevel>4</WarningLevel>
44    <DocumentationFile>
45    </DocumentationFile>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
48    <DebugType>pdbonly</DebugType>
49    <Optimize>true</Optimize>
50    <OutputPath>bin\Release\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <ErrorReport>prompt</ErrorReport>
53    <WarningLevel>4</WarningLevel>
54    <DocumentationFile>bin\Release\HeuristicLab.Core-3.3.xml</DocumentationFile>
55    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
56  </PropertyGroup>
57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x86\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x86</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64  </PropertyGroup>
65  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
66    <OutputPath>bin\x86\Release\</OutputPath>
67    <DefineConstants>TRACE</DefineConstants>
68    <DocumentationFile>bin\x86\Release\HeuristicLab.Core-3.3.xml</DocumentationFile>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
74  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
75    <DebugSymbols>true</DebugSymbols>
76    <OutputPath>bin\x64\Debug\</OutputPath>
77    <DefineConstants>DEBUG;TRACE</DefineConstants>
78    <DebugType>full</DebugType>
79    <PlatformTarget>x64</PlatformTarget>
80    <ErrorReport>prompt</ErrorReport>
81  </PropertyGroup>
82  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
83    <OutputPath>bin\x64\Release\</OutputPath>
84    <DefineConstants>TRACE</DefineConstants>
85    <DocumentationFile>bin\x64\Release\HeuristicLab.Core-3.3.xml</DocumentationFile>
86    <Optimize>true</Optimize>
87    <DebugType>pdbonly</DebugType>
88    <PlatformTarget>x64</PlatformTarget>
89    <ErrorReport>prompt</ErrorReport>
90  </PropertyGroup>
91  <ItemGroup>
92    <Reference Include="System" />
93    <Reference Include="System.Core">
94      <RequiredTargetFramework>3.5</RequiredTargetFramework>
95    </Reference>
96    <Reference Include="System.Data" />
97    <Reference Include="System.Drawing" />
98    <Reference Include="System.Xml" />
99  </ItemGroup>
100  <ItemGroup>
101    <Compile Include="Attributes\ItemAttribute.cs" />
102    <Compile Include="Cloner.cs" />
103    <Compile Include="Attributes\CreatableAttribute.cs" />
104    <None Include="HeuristicLabCorePlugin.cs.frame" />
105    <Compile Include="Interfaces\IParameterizedNamedItem.cs" />
106    <Compile Include="Interfaces\IParameterizedItem.cs" />
107    <Compile Include="Interfaces\IAtomicOperation.cs" />
108    <Compile Include="Interfaces\IExecutionContext.cs" />
109    <Compile Include="Interfaces\IOperation.cs" />
110    <Compile Include="OperationCollection.cs" />
111    <Compile Include="ParameterizedNamedItem.cs" />
112    <Compile Include="ValueParameterCollection.cs" />
113    <Compile Include="Interfaces\IValueLookupParameter.cs" />
114    <Compile Include="Interfaces\IValueParameter.cs" />
115    <Compile Include="Interfaces\ILookupParameter.cs" />
116    <Compile Include="ItemArray.cs" />
117    <Compile Include="DeepCloneable.cs" />
118    <Compile Include="Engine.cs" />
119    <Compile Include="Interfaces\IScope.cs" />
120    <Compile Include="Interfaces\IVariable.cs" />
121    <Compile Include="Item.cs" />
122    <Compile Include="NamedItem.cs" />
123    <Compile Include="OperatorGraph.cs" />
124    <Compile Include="Interfaces\IParameter.cs" />
125    <Compile Include="OperatorCollection.cs" />
126    <Compile Include="ItemCollection.cs" />
127    <Compile Include="OperatorSet.cs" />
128    <Compile Include="ItemSet.cs" />
129    <Compile Include="ItemList.cs" />
130    <Compile Include="Interfaces\IEngine.cs">
131      <SubType>Code</SubType>
132    </Compile>
133    <Compile Include="ExecutionContext.cs" />
134    <Compile Include="OperatorList.cs" />
135    <Compile Include="ParameterCollection.cs" />
136    <Compile Include="VariableCollection.cs" />
137    <Compile Include="ScopeList.cs" />
138    <Compile Include="Interfaces\IDeepCloneable.cs" />
139    <Compile Include="NamedItemCollection.cs" />
140    <Compile Include="Interfaces\INamedItem.cs" />
141    <Compile Include="Interfaces\IItem.cs" />
142    <Compile Include="Interfaces\IRandom.cs" />
143    <Compile Include="Scope.cs" />
144    <Compile Include="Interfaces\IOperator.cs" />
145    <Compile Include="HeuristicLabCorePlugin.cs" />
146    <Compile Include="Properties\AssemblyInfo.cs" />
147    <Compile Include="Variable.cs" />
148  </ItemGroup>
149  <ItemGroup>
150    <None Include="HeuristicLab.snk" />
151    <None Include="Properties\AssemblyInfo.frame" />
152  </ItemGroup>
153  <ItemGroup>
154    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
155      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
156      <Name>HeuristicLab.Collections-3.3</Name>
157    </ProjectReference>
158    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj">
159      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
160      <Name>HeuristicLab.Common.Resources-3.2</Name>
161    </ProjectReference>
162    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
163      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
164      <Name>HeuristicLab.Common-3.2</Name>
165    </ProjectReference>
166    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
167      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
168      <Name>HeuristicLab.Persistence-3.3</Name>
169    </ProjectReference>
170    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
171      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
172      <Name>HeuristicLab.PluginInfrastructure</Name>
173    </ProjectReference>
174  </ItemGroup>
175  <ItemGroup>
176    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
177      <Visible>False</Visible>
178      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
179      <Install>true</Install>
180    </BootstrapperPackage>
181    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
182      <Visible>False</Visible>
183      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
184      <Install>false</Install>
185    </BootstrapperPackage>
186    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
187      <Visible>False</Visible>
188      <ProductName>.NET Framework 3.5</ProductName>
189      <Install>false</Install>
190    </BootstrapperPackage>
191  </ItemGroup>
192  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
193  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
194       Other similar extension points exist, see Microsoft.Common.targets.
195  <Target Name="BeforeBuild">
196  </Target>
197  <Target Name="AfterBuild">
198  </Target>
199  -->
200  <PropertyGroup>
201    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
202set ProjectDir=$(ProjectDir)
203set SolutionDir=$(SolutionDir)
204set Outdir=$(Outdir)
205
206call PreBuildEvent.cmd
207SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabCorePlugin.cs.frame" "%25ProjectDir%25\HeuristicLabCorePlugin.cs"</PreBuildEvent>
208  </PropertyGroup>
209</Project>
Note: See TracBrowser for help on using the repository browser.