Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Engine/HeuristicLab.Hive.Engine.csproj @ 1432

Last change on this file since 1432 was 1432, checked in by gkronber, 15 years ago

Added project for hive engine (copied from SequentialEngine). #545 (Engine which can be executed in the Hive)

File size: 3.7 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>{C8FEDAC1-0326-4293-B585-F0FEDDEDFC11}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Engine</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Engine</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core">
36      <RequiredTargetFramework>3.5</RequiredTargetFramework>
37    </Reference>
38    <Reference Include="System.Drawing" />
39    <Reference Include="System.Windows.Forms" />
40    <Reference Include="System.Xml.Linq">
41      <RequiredTargetFramework>3.5</RequiredTargetFramework>
42    </Reference>
43    <Reference Include="System.Data.DataSetExtensions">
44      <RequiredTargetFramework>3.5</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Data" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="HeuristicLabHiveEnginePlugin.cs" />
51    <Compile Include="HiveEngine.cs" />
52    <Compile Include="HiveEngineEditor.cs">
53    </Compile>
54    <Compile Include="HiveEngineEditor.Designer.cs">
55      <DependentUpon>HiveEngineEditor.cs</DependentUpon>
56    </Compile>
57  </ItemGroup>
58  <ItemGroup>
59    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
60      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
61      <Name>HeuristicLab.Core</Name>
62    </ProjectReference>
63    <ProjectReference Include="..\HeuristicLab.Hive.JobBase\HeuristicLab.Hive.JobBase.csproj">
64      <Project>{21187322-52DD-4243-80A4-A85F0263E63B}</Project>
65      <Name>HeuristicLab.Hive.JobBase</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
68      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
69      <Name>HeuristicLab.PluginInfrastructure</Name>
70    </ProjectReference>
71  </ItemGroup>
72  <ItemGroup>
73    <None Include="Properties\AssemblyInfo.frame" />
74  </ItemGroup>
75  <ItemGroup>
76    <EmbeddedResource Include="HiveEngineEditor.resx">
77      <DependentUpon>HiveEngineEditor.cs</DependentUpon>
78    </EmbeddedResource>
79  </ItemGroup>
80  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
81  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
82       Other similar extension points exist, see Microsoft.Common.targets.
83  <Target Name="BeforeBuild">
84  </Target>
85  <Target Name="AfterBuild">
86  </Target>
87  -->
88</Project>
Note: See TracBrowser for help on using the repository browser.