Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1233

  • renamed last couple of folders
  • fixed an installer bug
  • now with more license headers and less magic numbers
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    <None Include="Properties\AssemblyInfo.cs.frame" />
61    <Compile Include="SlaveCommListener.cs" />
62  </ItemGroup>
63  <ItemGroup>
64    <ProjectReference Include="..\..\HeuristicLab.Clients.Hive.Slave\3.3\HeuristicLab.Clients.Hive.Slave-3.3.csproj">
65      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
66      <Name>HeuristicLab.Clients.Hive.Slave-3.3</Name>
67    </ProjectReference>
68    <ProjectReference Include="..\..\HeuristicLab.Clients.Hive\3.3\HeuristicLab.Clients.Hive-3.3.csproj">
69      <Project>{B5EF1E5A-9F3D-40B9-B4B0-30AADF2E2CEB}</Project>
70      <Name>HeuristicLab.Clients.Hive-3.3</Name>
71    </ProjectReference>
72    <ProjectReference Include="..\..\HeuristicLab.Hive\3.3\HeuristicLab.Hive-3.3.csproj">
73      <Project>{F98A1740-9AC9-4D36-A582-6A2D0D06978D}</Project>
74      <Name>HeuristicLab.Hive-3.3</Name>
75    </ProjectReference>
76  </ItemGroup>
77  <ItemGroup>
78    <None Include="app.config">
79      <SubType>Designer</SubType>
80    </None>
81    <None Include="app_ascheibe.config">
82      <SubType>Designer</SubType>
83    </None>
84    <None Include="app_f005pc.config" />
85    <None Include="app_services.config" />
86  </ItemGroup>
87  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
88  <PropertyGroup>
89    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
90set ProjectDir=$(ProjectDir)
91set SolutionDir=$(SolutionDir)
92set Outdir=$(Outdir)
93
94call PreBuildEvent.cmd</PreBuildEvent>
95  </PropertyGroup>
96  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
97       Other similar extension points exist, see Microsoft.Common.targets.
98  <Target Name="BeforeBuild">
99  </Target>
100  <Target Name="AfterBuild">
101  </Target>
102  -->
103</Project>
Note: See TracBrowser for help on using the repository browser.