Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

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