Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.0/sources/HeuristicLab.DistributedEngine/HeuristicLab.DistributedEngine.csproj @ 4384

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

merged changesets r219:r228, r240, r241:258, r263:265, r267,r268, r269 from trunk into the HL3 stable branch

File size: 4.1 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="JobManager.cs" />
53    <Compile Include="Properties\AssemblyInfo.cs" />
54    <Compile Include="DistributedEngine.cs" />
55    <Compile Include="DistributedEngineEditor.cs">
56      <SubType>UserControl</SubType>
57    </Compile>
58    <Compile Include="DistributedEngineEditor.Designer.cs">
59      <DependentUpon>DistributedEngineEditor.cs</DependentUpon>
60    </Compile>
61  </ItemGroup>
62  <ItemGroup>
63    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
64      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
65      <Name>HeuristicLab.Core</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.Grid\HeuristicLab.Grid.csproj">
68      <Project>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</Project>
69      <Name>HeuristicLab.Grid</Name>
70    </ProjectReference>
71    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
72      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
73      <Name>HeuristicLab.PluginInfrastructure</Name>
74    </ProjectReference>
75  </ItemGroup>
76  <ItemGroup>
77    <EmbeddedResource Include="DistributedEngineEditor.resx">
78      <DependentUpon>DistributedEngineEditor.cs</DependentUpon>
79      <SubType>Designer</SubType>
80    </EmbeddedResource>
81  </ItemGroup>
82  <ItemGroup>
83    <None Include="Properties\AssemblyInfo.frame" />
84  </ItemGroup>
85  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
86  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
87       Other similar extension points exist, see Microsoft.Common.targets.
88  <Target Name="BeforeBuild">
89  </Target>
90  <Target Name="AfterBuild">
91  </Target>
92  -->
93  <PropertyGroup>
94    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
95  </PropertyGroup>
96</Project>
Note: See TracBrowser for help on using the repository browser.