Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2636 was 2546, checked in by swagner, 15 years ago

Continued work on Optimizer and on adapting all views to the new MainForm concept (#770)

File size: 8.3 KB
RevLine 
[2]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>
[858]5    <ProductVersion>9.0.30729</ProductVersion>
[2]6    <SchemaVersion>2.0</SchemaVersion>
[1663]7    <ProjectGuid>{C36BD924-A541-4A00-AFA8-41701378DDC5}</ProjectGuid>
[2]8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Core</RootNamespace>
[1663]11    <AssemblyName>HeuristicLab.Core-3.3</AssemblyName>
[2]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>
[1667]34    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[2]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>
[1663]54    <DocumentationFile>bin\Release\HeuristicLab.Core-3.3.xml</DocumentationFile>
[2]55    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
56  </PropertyGroup>
[564]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>
[582]68    <DocumentationFile>bin\Release\HeuristicLab.Core-3.2.XML</DocumentationFile>
[564]69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
[1474]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\Release\HeuristicLab.Core-3.2.XML</DocumentationFile>
86    <Optimize>true</Optimize>
87    <DebugType>pdbonly</DebugType>
88    <PlatformTarget>x64</PlatformTarget>
89    <ErrorReport>prompt</ErrorReport>
90  </PropertyGroup>
[2]91  <ItemGroup>
92    <Reference Include="System" />
[1667]93    <Reference Include="System.Core">
94      <RequiredTargetFramework>3.5</RequiredTargetFramework>
95    </Reference>
[2]96    <Reference Include="System.Data" />
[2546]97    <Reference Include="System.Drawing" />
[2]98    <Reference Include="System.Xml" />
99  </ItemGroup>
100  <ItemGroup>
101    <Compile Include="AtomicOperation.cs" />
[2546]102    <Compile Include="Attributes\ItemAttribute.cs" />
[2]103    <Compile Include="CompositeOperation.cs" />
[2526]104    <Compile Include="Cloner.cs" />
[2546]105    <Compile Include="Attributes\CreatableAttribute.cs" />
[2526]106    <Compile Include="Interfaces\ICloner.cs" />
[2]107    <Compile Include="Interfaces\IOperation.cs" />
108    <Compile Include="Interfaces\IOperatorLibrary.cs" />
109    <Compile Include="Interfaces\IVisualizationItem.cs" />
110    <Compile Include="Interfaces\IItem.cs" />
111    <Compile Include="ItemBase.cs" />
112    <Compile Include="OperatorLibrary.cs" />
113    <Compile Include="Interfaces\IOperatorGroup.cs" />
114    <Compile Include="Interfaces\IOperatorGraph.cs" />
115    <Compile Include="Interfaces\IScope.cs" />
116    <Compile Include="Interfaces\IVariable.cs" />
117    <Compile Include="Interfaces\IVariableInfo.cs" />
118    <Compile Include="OperatorGroup.cs">
119      <SubType>Code</SubType>
120    </Compile>
121    <Compile Include="OperatorBase.cs" />
122    <Compile Include="Interfaces\IRandom.cs" />
123    <Compile Include="OperatorGraph.cs" />
124    <Compile Include="Scope.cs" />
125    <Compile Include="EngineBase.cs" />
126    <Compile Include="Interfaces\IEngine.cs" />
127    <Compile Include="Interfaces\IOperator.cs" />
128    <Compile Include="PersistenceManager.cs" />
129    <Compile Include="HeuristicLabCorePlugin.cs" />
130    <Compile Include="Properties\AssemblyInfo.cs" />
131    <Compile Include="Variable.cs" />
132    <Compile Include="VariableInfo.cs" />
133    <Compile Include="VariableKind.cs" />
134  </ItemGroup>
135  <ItemGroup>
136    <None Include="HeuristicLab.snk" />
[25]137    <None Include="Properties\AssemblyInfo.frame" />
[2]138  </ItemGroup>
139  <ItemGroup>
[2546]140    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj">
141      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
142      <Name>HeuristicLab.Common.Resources-3.2</Name>
143    </ProjectReference>
[2474]144    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
145      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
146      <Name>HeuristicLab.Common-3.2</Name>
147    </ProjectReference>
[1667]148    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
149      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
150      <Name>HeuristicLab.Persistence-3.3</Name>
151    </ProjectReference>
[1534]152    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
[2]153      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
154      <Name>HeuristicLab.PluginInfrastructure</Name>
155    </ProjectReference>
156  </ItemGroup>
157  <ItemGroup>
158    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
159      <Visible>False</Visible>
160      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
161      <Install>true</Install>
162    </BootstrapperPackage>
163    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
164      <Visible>False</Visible>
165      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
166      <Install>false</Install>
167    </BootstrapperPackage>
168    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
169      <Visible>False</Visible>
170      <ProductName>.NET Framework 3.5</ProductName>
171      <Install>false</Install>
172    </BootstrapperPackage>
173  </ItemGroup>
174  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
175  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
176       Other similar extension points exist, see Microsoft.Common.targets.
177  <Target Name="BeforeBuild">
178  </Target>
179  <Target Name="AfterBuild">
180  </Target>
181  -->
[25]182  <PropertyGroup>
[852]183    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
184set ProjectDir=$(ProjectDir)
185set SolutionDir=$(SolutionDir)
186set Outdir=$(Outdir)
187
188call PreBuildEvent.cmd</PreBuildEvent>
[25]189  </PropertyGroup>
[2]190</Project>
Note: See TracBrowser for help on using the repository browser.