Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DistributedEngine/HeuristicLab.DistributedEngine.csproj @ 27

Last change on this file since 27 was 27, checked in by gkronber, 16 years ago

fixed #34 by not extending ProcessingEngine from ThreadParallelEngine. This also has the benefit that Grid and DistributedEngine are not dependent on ThreadParallelEngine anymore.

File size: 3.9 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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.DistributedEngine</RootNamespace>
12    <AssemblyName>HeuristicLab.DistributedEngine</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    <DocumentationFile>bin\Release\HeuristicLab.DistributedEngine.XML</DocumentationFile>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="System" />
36    <Reference Include="System.Core">
37      <RequiredTargetFramework>3.5</RequiredTargetFramework>
38    </Reference>
39    <Reference Include="System.Data" />
40    <Reference Include="System.Drawing" />
41    <Reference Include="System.Runtime.Serialization">
42      <RequiredTargetFramework>3.0</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.ServiceModel">
45      <RequiredTargetFramework>3.0</RequiredTargetFramework>
46    </Reference>
47    <Reference Include="System.Windows.Forms" />
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="HeuristicLabDistributedEnginePlugin.cs" />
52    <Compile Include="Properties\AssemblyInfo.cs" />
53    <Compile Include="DistributedEngine.cs" />
54    <Compile Include="DistributedEngineEditor.cs">
55      <SubType>UserControl</SubType>
56    </Compile>
57    <Compile Include="DistributedEngineEditor.Designer.cs">
58      <DependentUpon>DistributedEngineEditor.cs</DependentUpon>
59    </Compile>
60  </ItemGroup>
61  <ItemGroup>
62    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
63      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
64      <Name>HeuristicLab.Core</Name>
65    </ProjectReference>
66    <ProjectReference Include="..\HeuristicLab.Grid\HeuristicLab.Grid.csproj">
67      <Project>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</Project>
68      <Name>HeuristicLab.Grid</Name>
69    </ProjectReference>
70    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
71      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
72      <Name>HeuristicLab.PluginInfrastructure</Name>
73    </ProjectReference>
74  </ItemGroup>
75  <ItemGroup>
76    <EmbeddedResource Include="DistributedEngineEditor.resx">
77      <DependentUpon>DistributedEngineEditor.cs</DependentUpon>
78      <SubType>Designer</SubType>
79    </EmbeddedResource>
80  </ItemGroup>
81  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
83       Other similar extension points exist, see Microsoft.Common.targets.
84  <Target Name="BeforeBuild">
85  </Target>
86  <Target Name="AfterBuild">
87  </Target>
88  -->
89</Project>
Note: See TracBrowser for help on using the repository browser.