Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/HeuristicLab.Grid.csproj @ 452

Last change on this file since 452 was 440, checked in by gkronber, 16 years ago
  • split the GridForm class into two classes GridForm and GridClient
  • added class EngineRunner to act as the bridge between the AppDomain where engines are executed and the main AppDomain of the client.
  • GridClient creates a new AppDomain for each engine and unloads it again when the engine is finished.

(ticket #230)

File size: 4.8 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    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Drawing" />
42    <Reference Include="System.Runtime.Serialization">
43      <RequiredTargetFramework>3.0</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.ServiceModel">
46      <RequiredTargetFramework>3.0</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Windows.Forms" />
49    <Reference Include="System.Xml.Linq">
50      <RequiredTargetFramework>3.5</RequiredTargetFramework>
51    </Reference>
52    <Reference Include="System.Data" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="ClientForm.cs">
57      <SubType>Form</SubType>
58    </Compile>
59    <Compile Include="ClientForm.designer.cs">
60      <DependentUpon>ClientForm.cs</DependentUpon>
61    </Compile>
62    <Compile Include="EngineRunner.cs" />
63    <Compile Include="EngineStore.cs" />
64    <Compile Include="GridClient.cs" />
65    <Compile Include="GridClientApplication.cs" />
66    <Compile Include="GridServer.cs" />
67    <Compile Include="GridServerApplication.cs" />
68    <Compile Include="HeuristicLabGridPlugin.cs" />
69    <Compile Include="IEngineStore.cs" />
70    <Compile Include="IGridServer.cs" />
71    <Compile Include="JobManager.cs" />
72    <Compile Include="ProcessingEngine.cs" />
73    <Compile Include="Properties\AssemblyInfo.cs" />
74    <Compile Include="ServerForm.cs">
75      <SubType>Form</SubType>
76    </Compile>
77    <Compile Include="ServerForm.designer.cs">
78      <DependentUpon>ServerForm.cs</DependentUpon>
79    </Compile>
80  </ItemGroup>
81  <ItemGroup>
82    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
83      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
84      <Name>HeuristicLab.Core</Name>
85    </ProjectReference>
86    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
87      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
88      <Name>HeuristicLab.PluginInfrastructure</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <EmbeddedResource Include="ClientForm.resx">
93      <DependentUpon>ClientForm.cs</DependentUpon>
94      <SubType>Designer</SubType>
95    </EmbeddedResource>
96    <EmbeddedResource Include="ServerForm.resx">
97      <DependentUpon>ServerForm.cs</DependentUpon>
98      <SubType>Designer</SubType>
99    </EmbeddedResource>
100  </ItemGroup>
101  <ItemGroup>
102    <None Include="HeuristicLab.snk" />
103    <None Include="Properties\AssemblyInfo.frame" />
104  </ItemGroup>
105  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
107       Other similar extension points exist, see Microsoft.Common.targets.
108  <Target Name="BeforeBuild">
109  </Target>
110  <Target Name="AfterBuild">
111  </Target>
112  -->
113  <PropertyGroup>
114    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
115  </PropertyGroup>
116</Project>
Note: See TracBrowser for help on using the repository browser.