Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.SelfHost/3.3/HeuristicLab.Services.Hive.SelfHost-3.3.csproj @ 9522

Last change on this file since 9522 was 9434, checked in by pfleck, 11 years ago

#2030
Added SelfHost-Project
Renamed HiveDtoDao back to HiveDao and renamed the optimized HiveDao into OptimizedDao instead.
Optimized AddTask by using compiled queries.

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  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{DAACE3EB-5D88-419D-9EEC-5707E273491A}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Services.Hive.SelfHost</RootNamespace>
11    <AssemblyName>HeuristicLab.Services.Hive.SelfHost-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <PublishUrl>publish\</PublishUrl>
15    <Install>true</Install>
16    <InstallFrom>Disk</InstallFrom>
17    <UpdateEnabled>false</UpdateEnabled>
18    <UpdateMode>Foreground</UpdateMode>
19    <UpdateInterval>7</UpdateInterval>
20    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
21    <UpdatePeriodically>false</UpdatePeriodically>
22    <UpdateRequired>false</UpdateRequired>
23    <MapFileExtensions>true</MapFileExtensions>
24    <ApplicationRevision>0</ApplicationRevision>
25    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
26    <IsWebBootstrapper>false</IsWebBootstrapper>
27    <UseApplicationTrust>false</UseApplicationTrust>
28    <BootstrapperEnabled>true</BootstrapperEnabled>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31    <PlatformTarget>AnyCPU</PlatformTarget>
32    <DebugSymbols>true</DebugSymbols>
33    <DebugType>full</DebugType>
34    <Optimize>false</Optimize>
35    <OutputPath>bin\Debug\</OutputPath>
36    <DefineConstants>DEBUG;TRACE</DefineConstants>
37    <ErrorReport>prompt</ErrorReport>
38    <WarningLevel>4</WarningLevel>
39  </PropertyGroup>
40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41    <PlatformTarget>AnyCPU</PlatformTarget>
42    <DebugType>pdbonly</DebugType>
43    <Optimize>true</Optimize>
44    <OutputPath>bin\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <ErrorReport>prompt</ErrorReport>
47    <WarningLevel>4</WarningLevel>
48  </PropertyGroup>
49  <ItemGroup>
50    <Reference Include="System" />
51    <Reference Include="System.Core" />
52    <Reference Include="System.ServiceModel" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="Program.cs" />
56    <None Include="App.config" />
57    <None Include="Properties\AssemblyInfo.cs.frame" />
58    <Compile Include="Properties\AssemblyInfo.cs" />
59  </ItemGroup>
60  <ItemGroup>
61    <ProjectReference Include="..\..\HeuristicLab.Services.Hive\3.3\HeuristicLab.Services.Hive-3.3.csproj">
62      <Project>{cf9da321-ac1b-4fd3-9ec3-67bc6b861bde}</Project>
63      <Name>HeuristicLab.Services.Hive-3.3</Name>
64    </ProjectReference>
65  </ItemGroup>
66  <ItemGroup>
67    <BootstrapperPackage Include=".NETFramework,Version=v4.0">
68      <Visible>False</Visible>
69      <ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
70      <Install>true</Install>
71    </BootstrapperPackage>
72    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
73      <Visible>False</Visible>
74      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
75      <Install>false</Install>
76    </BootstrapperPackage>
77    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
78      <Visible>False</Visible>
79      <ProductName>.NET Framework 3.5 SP1</ProductName>
80      <Install>false</Install>
81    </BootstrapperPackage>
82    <BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
83      <Visible>False</Visible>
84      <ProductName>Windows Installer 4.5</ProductName>
85      <Install>true</Install>
86    </BootstrapperPackage>
87  </ItemGroup>
88  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89  <PropertyGroup>
90    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
91set ProjectDir=$(ProjectDir)
92set SolutionDir=$(SolutionDir)
93set Outdir=$(Outdir)
94
95call PreBuildEvent.cmd</PreBuildEvent>
96  </PropertyGroup>
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104</Project>
Note: See TracBrowser for help on using the repository browser.