Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.ConsoleClient/HeuristicLab.Clients.Hive.Slave.ConsoleClient-3.4.csproj @ 6359

Last change on this file since 6359 was 6101, checked in by ascheibe, 13 years ago

#1233

  • don't lock engines for so long in StartJobInAppDomain
  • move SlaveCommListener to ConsoleClient
  • delete orphaned job folders at startup
File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{464D70B8-2D91-485C-B622-22E4A4891C68}</ProjectGuid>
9    <OutputType>Exe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Clients.Hive.SlaveCore.ConsoleClient</RootNamespace>
12    <AssemblyName>HeuristicLab.Clients.Hive.Slave.ConsoleClient-3.4</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
18    <PlatformTarget>x86</PlatformTarget>
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|x86' ">
28    <PlatformTarget>x86</PlatformTarget>
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <PropertyGroup>
37    <StartupObject>
38    </StartupObject>
39  </PropertyGroup>
40  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
41    <PlatformTarget>AnyCPU</PlatformTarget>
42    <OutputPath>bin\Debug\</OutputPath>
43  </PropertyGroup>
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
45    <PlatformTarget>AnyCPU</PlatformTarget>
46    <OutputPath>bin\Release\</OutputPath>
47  </PropertyGroup>
48  <ItemGroup>
49    <Reference Include="System" />
50    <Reference Include="System.Core" />
51    <Reference Include="System.ServiceModel" />
52    <Reference Include="System.Xml.Linq" />
53    <Reference Include="System.Data.DataSetExtensions" />
54    <Reference Include="System.Data" />
55    <Reference Include="System.Xml" />
56  </ItemGroup>
57  <ItemGroup>
58    <Compile Include="Program.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60    <Compile Include="SlaveCommListener.cs" />
61  </ItemGroup>
62  <ItemGroup>
63    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave\3.4\HeuristicLab.Clients.Hive.Slave-3.4.csproj">
64      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
65      <Name>HeuristicLab.Clients.Hive.Slave-3.4</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.Clients.Hive\3.4\HeuristicLab.Clients.Hive-3.4.csproj">
68      <Project>{B5EF1E5A-9F3D-40B9-B4B0-30AADF2E2CEB}</Project>
69      <Name>HeuristicLab.Clients.Hive-3.4</Name>
70    </ProjectReference>
71    <ProjectReference Include="..\HeuristicLab.Hive\3.4\HeuristicLab.Hive-3.4.csproj">
72      <Project>{F98A1740-9AC9-4D36-A582-6A2D0D06978D}</Project>
73      <Name>HeuristicLab.Hive-3.4</Name>
74    </ProjectReference>
75  </ItemGroup>
76  <ItemGroup>
77    <None Include="app.config">
78      <SubType>Designer</SubType>
79    </None>
80    <None Include="app_ascheibe.config">
81      <SubType>Designer</SubType>
82    </None>
83    <None Include="app_f005pc.config" />
84    <None Include="app_services.config" />
85  </ItemGroup>
86  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87  <PropertyGroup>
88    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89set ProjectDir=$(ProjectDir)
90set SolutionDir=$(SolutionDir)
91set Outdir=$(Outdir)
92
93call PreBuildEvent.cmd</PreBuildEvent>
94  </PropertyGroup>
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102</Project>
Note: See TracBrowser for help on using the repository browser.