Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/HeuristicLab.Grid.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: 4.3 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>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Grid</RootNamespace>
12    <AssemblyName>HeuristicLab.Grid</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.Grid.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.Drawing" />
40    <Reference Include="System.Runtime.Serialization">
41      <RequiredTargetFramework>3.0</RequiredTargetFramework>
42    </Reference>
43    <Reference Include="System.ServiceModel">
44      <RequiredTargetFramework>3.0</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.Xml.Linq">
48      <RequiredTargetFramework>3.5</RequiredTargetFramework>
49    </Reference>
50    <Reference Include="System.Data" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="ClientForm.cs">
55      <SubType>Form</SubType>
56    </Compile>
57    <Compile Include="ClientForm.designer.cs">
58      <DependentUpon>ClientForm.cs</DependentUpon>
59    </Compile>
60    <Compile Include="EngineStore.cs" />
61    <Compile Include="GridClientApplication.cs" />
62    <Compile Include="GridServer.cs" />
63    <Compile Include="GridServerApplication.cs" />
64    <Compile Include="HeuristicLabGridPlugin.cs" />
65    <Compile Include="IEngineStore.cs" />
66    <Compile Include="IGridServer.cs" />
67    <Compile Include="ProcessingEngine.cs" />
68    <Compile Include="Properties\AssemblyInfo.cs" />
69    <Compile Include="ServerForm.cs">
70      <SubType>Form</SubType>
71    </Compile>
72    <Compile Include="ServerForm.designer.cs">
73      <DependentUpon>ServerForm.cs</DependentUpon>
74    </Compile>
75  </ItemGroup>
76  <ItemGroup>
77    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
78      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
79      <Name>HeuristicLab.Core</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
82      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
83      <Name>HeuristicLab.PluginInfrastructure</Name>
84    </ProjectReference>
85  </ItemGroup>
86  <ItemGroup>
87    <EmbeddedResource Include="ClientForm.resx">
88      <DependentUpon>ClientForm.cs</DependentUpon>
89      <SubType>Designer</SubType>
90    </EmbeddedResource>
91    <EmbeddedResource Include="ServerForm.resx">
92      <DependentUpon>ServerForm.cs</DependentUpon>
93      <SubType>Designer</SubType>
94    </EmbeddedResource>
95  </ItemGroup>
96  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104</Project>
Note: See TracBrowser for help on using the repository browser.