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

Last change on this file since 7317 was 7215, checked in by spimming, 13 years ago

#1680:

  • merged changes from trunk into branch

' removed pre-build event for multiple app.configs

File size: 5.0 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="WorkerRole.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66  </ItemGroup>
67  <ItemGroup>
68    <None Include="app.config">
69      <SubType>Designer</SubType>
70    </None>
71    <None Include="app.config.DebugLocal" />
72    <None Include="app.config.DebugServices" />
73  </ItemGroup>
74  <ItemGroup>
75    <ProjectReference Include="..\HeuristicLab.Clients.Hive.Slave\3.3\HeuristicLab.Clients.Hive.Slave-3.3.csproj">
76      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
77      <Name>HeuristicLab.Clients.Hive.Slave-3.3</Name>
78    </ProjectReference>
79  </ItemGroup>
80  <ItemGroup>
81    <BootstrapperPackage Include=".NETFramework,Version=v4.0">
82      <Visible>False</Visible>
83      <ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
84      <Install>true</Install>
85    </BootstrapperPackage>
86    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
87      <Visible>False</Visible>
88      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
89      <Install>false</Install>
90    </BootstrapperPackage>
91    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
92      <Visible>False</Visible>
93      <ProductName>.NET Framework 3.5 SP1</ProductName>
94      <Install>false</Install>
95    </BootstrapperPackage>
96    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
97      <Visible>False</Visible>
98      <ProductName>Windows Installer 3.1</ProductName>
99      <Install>true</Install>
100    </BootstrapperPackage>
101  </ItemGroup>
102  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103  <PropertyGroup>
104    <PreBuildEvent>
105    </PreBuildEvent>
106  </PropertyGroup>
107  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108       Other similar extension points exist, see Microsoft.Common.targets.
109  <Target Name="BeforeBuild">
110  </Target>
111  <Target Name="AfterBuild">
112  </Target>
113  -->
114</Project>
Note: See TracBrowser for help on using the repository browser.