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 @ 7714

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

#1680:

  • start diagnostic monitor only when a connection string is specified
  • constants file added
File size: 5.1 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    <PublishUrl>publish\</PublishUrl>
17    <Install>true</Install>
18    <InstallFrom>Disk</InstallFrom>
19    <UpdateEnabled>false</UpdateEnabled>
20    <UpdateMode>Foreground</UpdateMode>
21    <UpdateInterval>7</UpdateInterval>
22    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
23    <UpdatePeriodically>false</UpdatePeriodically>
24    <UpdateRequired>false</UpdateRequired>
25    <MapFileExtensions>true</MapFileExtensions>
26    <ApplicationRevision>0</ApplicationRevision>
27    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
28    <IsWebBootstrapper>false</IsWebBootstrapper>
29    <UseApplicationTrust>false</UseApplicationTrust>
30    <BootstrapperEnabled>true</BootstrapperEnabled>
31  </PropertyGroup>
32  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
33    <DebugSymbols>true</DebugSymbols>
34    <DebugType>full</DebugType>
35    <Optimize>false</Optimize>
36    <OutputPath>bin\Debug\</OutputPath>
37    <DefineConstants>DEBUG;TRACE</DefineConstants>
38    <ErrorReport>prompt</ErrorReport>
39    <WarningLevel>4</WarningLevel>
40    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
41  </PropertyGroup>
42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43    <DebugType>pdbonly</DebugType>
44    <Optimize>true</Optimize>
45    <OutputPath>bin\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <ErrorReport>prompt</ErrorReport>
48    <WarningLevel>4</WarningLevel>
49    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
53    <Reference Include="Microsoft.WindowsAzure.ServiceRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
54    <Reference Include="Microsoft.WindowsAzure.StorageClient, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
55    <Reference Include="System" />
56    <Reference Include="System.Core" />
57    <Reference Include="System.Xml.Linq" />
58    <Reference Include="System.Data.DataSetExtensions" />
59    <Reference Include="Microsoft.CSharp" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="Constants.cs" />
65    <Compile Include="WorkerRole.cs" />
66    <Compile Include="Properties\AssemblyInfo.cs" />
67  </ItemGroup>
68  <ItemGroup>
69    <None Include="app.config">
70      <SubType>Designer</SubType>
71    </None>
72    <None Include="app.config.DebugLocal" />
73    <None Include="app.config.DebugServices" />
74  </ItemGroup>
75  <ItemGroup>
76    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave\3.3\HeuristicLab.Clients.Hive.Slave-3.3.csproj">
77      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
78      <Name>HeuristicLab.Clients.Hive.Slave-3.3</Name>
79    </ProjectReference>
80  </ItemGroup>
81  <ItemGroup>
82    <BootstrapperPackage Include=".NETFramework,Version=v4.0">
83      <Visible>False</Visible>
84      <ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
85      <Install>true</Install>
86    </BootstrapperPackage>
87    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
88      <Visible>False</Visible>
89      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
90      <Install>false</Install>
91    </BootstrapperPackage>
92    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
93      <Visible>False</Visible>
94      <ProductName>.NET Framework 3.5 SP1</ProductName>
95      <Install>false</Install>
96    </BootstrapperPackage>
97    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
98      <Visible>False</Visible>
99      <ProductName>Windows Installer 3.1</ProductName>
100      <Install>true</Install>
101    </BootstrapperPackage>
102  </ItemGroup>
103  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104  <PropertyGroup>
105    <PreBuildEvent>
106    </PreBuildEvent>
107  </PropertyGroup>
108  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109       Other similar extension points exist, see Microsoft.Common.targets.
110  <Target Name="BeforeBuild">
111  </Target>
112  <Target Name="AfterBuild">
113  </Target>
114  -->
115</Project>
Note: See TracBrowser for help on using the repository browser.