Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.Slave.AzureClient/HeuristicLab.Clients.Hive.Slave.AzureClient.csproj @ 6990

Last change on this file since 6990 was 6990, checked in by spimming, 12 years ago

#1680:

  • AzureClient initial commit
  • Azure project added
  • WorkerRole for starting the slave core
File size: 3.3 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)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{F29F88CE-290A-4169-A896-A6835D354934}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Clients.Hive.Slave.AzureClient</RootNamespace>
12    <AssemblyName>HeuristicLab.Clients.Hive.Slave.AzureClient</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <RoleType>Worker</RoleType>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="Microsoft.WindowsAzure.ServiceRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
36      <SpecificVersion>False</SpecificVersion>
37    </Reference>
38    <Reference Include="Microsoft.WindowsAzure.StorageClient, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
39      <SpecificVersion>False</SpecificVersion>
40      <Private>true</Private>
41    </Reference>
42    <Reference Include="Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
43      <SpecificVersion>False</SpecificVersion>
44      <Private>true</Private>
45    </Reference>
46    <Reference Include="System" />
47    <Reference Include="System.Core" />
48    <Reference Include="System.Xml.Linq" />
49    <Reference Include="System.Data.DataSetExtensions" />
50    <Reference Include="Microsoft.CSharp" />
51    <Reference Include="System.Data" />
52    <Reference Include="System.Xml" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="WorkerRole.cs" />
56    <Compile Include="Properties\AssemblyInfo.cs" />
57  </ItemGroup>
58  <ItemGroup>
59    <None Include="app.config" />
60  </ItemGroup>
61  <ItemGroup>
62    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave\3.3\HeuristicLab.Clients.Hive.Slave-3.3.csproj">
63      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
64      <Name>HeuristicLab.Clients.Hive.Slave-3.3</Name>
65    </ProjectReference>
66  </ItemGroup>
67  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
68  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
69       Other similar extension points exist, see Microsoft.Common.targets.
70  <Target Name="BeforeBuild">
71  </Target>
72  <Target Name="AfterBuild">
73  </Target>
74  -->
75</Project>
Note: See TracBrowser for help on using the repository browser.