Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.DataAccess/3.3/HeuristicLab.Hive.Server.DataAccess-3.3.csproj @ 4710

Last change on this file since 4710 was 4710, checked in by cneumuel, 14 years ago

#1254

  • enabled full IIS7 compatibility
  • removed dependency to HeuristicLab.Tracing
  • changed server-side logging to wcf-tracing (needs to be enhanced to trace job-lifecycle)
File size: 5.9 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Server.DataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Server.DataAccess-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19    <FileUpgradeFlags>
20    </FileUpgradeFlags>
21    <OldToolsVersion>3.5</OldToolsVersion>
22    <UpgradeBackupLocation />
23    <TargetFrameworkProfile />
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
26    <DebugSymbols>true</DebugSymbols>
27    <DebugType>full</DebugType>
28    <Optimize>false</Optimize>
29    <OutputPath>bin\Debug\</OutputPath>
30    <DefineConstants>DEBUG;TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36    <DebugType>pdbonly</DebugType>
37    <Optimize>true</Optimize>
38    <OutputPath>bin\Release\</OutputPath>
39    <DefineConstants>TRACE</DefineConstants>
40    <ErrorReport>prompt</ErrorReport>
41    <WarningLevel>4</WarningLevel>
42    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
45    <DebugSymbols>true</DebugSymbols>
46    <OutputPath>bin\Debug\</OutputPath>
47    <DefineConstants>DEBUG;TRACE</DefineConstants>
48    <DebugType>full</DebugType>
49    <PlatformTarget>x86</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
52  </PropertyGroup>
53  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
54    <OutputPath>bin\x86\Release\</OutputPath>
55    <DefineConstants>TRACE</DefineConstants>
56    <Optimize>true</Optimize>
57    <DebugType>pdbonly</DebugType>
58    <PlatformTarget>x86</PlatformTarget>
59    <ErrorReport>prompt</ErrorReport>
60    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
61  </PropertyGroup>
62  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
63    <DebugSymbols>true</DebugSymbols>
64    <OutputPath>bin\x64\Debug\</OutputPath>
65    <DefineConstants>DEBUG;TRACE</DefineConstants>
66    <DebugType>full</DebugType>
67    <PlatformTarget>x64</PlatformTarget>
68    <ErrorReport>prompt</ErrorReport>
69    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
70  </PropertyGroup>
71  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
72    <OutputPath>bin\x64\Release\</OutputPath>
73    <DefineConstants>TRACE</DefineConstants>
74    <Optimize>true</Optimize>
75    <DebugType>pdbonly</DebugType>
76    <PlatformTarget>x64</PlatformTarget>
77    <ErrorReport>prompt</ErrorReport>
78    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
79  </PropertyGroup>
80  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
81  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
82       Other similar extension points exist, see Microsoft.Common.targets.
83  <Target Name="BeforeBuild">
84  </Target>
85  <Target Name="AfterBuild">
86  </Target>
87  -->
88  <ItemGroup>
89    <Compile Include="DataAccessException.cs" />
90    <Compile Include="IHiveExperimentDao.cs" />
91    <Compile Include="ISlaveConfigDao.cs" />
92    <Compile Include="ISlaveDao.cs" />
93    <Compile Include="ISlaveGroupDao.cs" />
94    <Compile Include="IContextFactory.cs" />
95    <Compile Include="IGenericDao.cs" />
96    <Compile Include="IJobDao.cs" />
97    <Compile Include="IPluginInfoDao.cs" />
98    <Compile Include="IUptimeCalendarDao.cs" />
99    <Compile Include="Properties\AssemblyInfo.cs" />
100    <Compile Include="HeuristicLabHiveServerDataAccessPlugin.cs" />
101  </ItemGroup>
102  <ItemGroup>
103    <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.3\HeuristicLab.DataAccess-3.3.csproj">
104      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
105      <Name>HeuristicLab.DataAccess-3.3</Name>
106    </ProjectReference>
107    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.3\HeuristicLab.Hive.Contracts-3.3.csproj">
108      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
109      <Name>HeuristicLab.Hive.Contracts-3.3</Name>
110    </ProjectReference>
111  </ItemGroup>
112  <PropertyGroup>
113    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
114set ProjectDir=$(ProjectDir)
115set SolutionDir=$(SolutionDir)
116set Outdir=$(Outdir)
117
118call PreBuildEvent.cmd</PreBuildEvent>
119  </PropertyGroup>
120  <ItemGroup>
121    <None Include="HeuristicLab.snk" />
122    <None Include="Properties\AssemblyInfo.frame" />
123  </ItemGroup>
124  <ItemGroup>
125    <Reference Include="HeuristicLab.Common-3.3">
126      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
127    </Reference>
128    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
129      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
130    </Reference>
131    <Reference Include="System" />
132    <Reference Include="System.Data" />
133    <Reference Include="System.Data.Linq" />
134    <Reference Include="System.Transactions" />
135    <Reference Include="System.Xml" />
136  </ItemGroup>
137</Project>
Note: See TracBrowser for help on using the repository browser.