Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1233

  • added app.configs
  • use PreBuildEvent.cmd in SlaveConsoleClient
  • react to SayHello msg
File size: 4.5 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.Slave.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  </ItemGroup>
61  <ItemGroup>
62    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave.Tests\HeuristicLab.Clients.Hive.Slave.Tests-3.4.csproj">
63      <Project>{C4CBD11E-1B83-464A-B0AD-0DC0FF7E57AA}</Project>
64      <Name>HeuristicLab.Clients.Hive.Slave.Tests-3.4</Name>
65    </ProjectReference>
66    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave\3.4\HeuristicLab.Clients.Hive.Slave-3.4.csproj">
67      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
68      <Name>HeuristicLab.Clients.Hive.Slave-3.4</Name>
69    </ProjectReference>
70    <ProjectReference Include="..\HeuristicLab.Clients.Hive\3.4\HeuristicLab.Clients.Hive-3.4.csproj">
71      <Project>{B5EF1E5A-9F3D-40B9-B4B0-30AADF2E2CEB}</Project>
72      <Name>HeuristicLab.Clients.Hive-3.4</Name>
73    </ProjectReference>
74    <ProjectReference Include="..\HeuristicLab.Hive\3.4\HeuristicLab.Hive-3.4.csproj">
75      <Project>{F98A1740-9AC9-4D36-A582-6A2D0D06978D}</Project>
76      <Name>HeuristicLab.Hive-3.4</Name>
77    </ProjectReference>
78  </ItemGroup>
79  <ItemGroup>
80    <None Include="app.config" />
81    <None Include="app_ascheibe.config">
82      <SubType>Designer</SubType>
83    </None>
84    <None Include="app_services.config" />
85  </ItemGroup>
86  <ItemGroup>
87    <Content Include="ICSharpCode.SharpZipLib License.txt">
88      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
89    </Content>
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <PropertyGroup>
93    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
94set ProjectDir=$(ProjectDir)
95set SolutionDir=$(SolutionDir)
96set Outdir=$(Outdir)
97
98call PreBuildEvent.cmd</PreBuildEvent>
99  </PropertyGroup>
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.