Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/HeuristicLab.Hive.Server.LINQDataAccess-3.3.csproj @ 4333

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

added authorizationManager which checks for permission to specific jobs (#1168)

File size: 7.7 KB
RevLine 
[2611]1<?xml version="1.0" encoding="utf-8"?>
[4074]2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
[2611]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>{A4499DDD-D1B8-414F-98F6-903C2C71BEB0}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Server.LINQDataAccess</RootNamespace>
[4077]12    <AssemblyName>HeuristicLab.Hive.Server.LINQDataAccess-3.3</AssemblyName>
[2611]13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[4074]17    <FileUpgradeFlags>
18    </FileUpgradeFlags>
19    <OldToolsVersion>3.5</OldToolsVersion>
20    <UpgradeBackupLocation />
[2611]21  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>full</DebugType>
25    <Optimize>false</Optimize>
[4053]26    <OutputPath>bin\Debug\</OutputPath>
[2611]27    <DefineConstants>DEBUG;TRACE</DefineConstants>
28    <ErrorReport>prompt</ErrorReport>
29    <WarningLevel>4</WarningLevel>
[4053]30    <PlatformTarget>AnyCPU</PlatformTarget>
[4074]31    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2611]32  </PropertyGroup>
33  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34    <DebugType>pdbonly</DebugType>
35    <Optimize>true</Optimize>
36    <OutputPath>bin\Release\</OutputPath>
37    <DefineConstants>TRACE</DefineConstants>
38    <ErrorReport>prompt</ErrorReport>
39    <WarningLevel>4</WarningLevel>
[4074]40    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2611]41  </PropertyGroup>
[2846]42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
43    <DebugSymbols>true</DebugSymbols>
[4121]44    <OutputPath>bin\Debug\</OutputPath>
[2846]45    <DefineConstants>DEBUG;TRACE</DefineConstants>
46    <DebugType>full</DebugType>
47    <PlatformTarget>x86</PlatformTarget>
48    <ErrorReport>prompt</ErrorReport>
[4074]49    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2846]50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
52    <OutputPath>bin\x86\Release\</OutputPath>
53    <DefineConstants>TRACE</DefineConstants>
54    <Optimize>true</Optimize>
55    <DebugType>pdbonly</DebugType>
56    <PlatformTarget>x86</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
[4074]58    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2846]59  </PropertyGroup>
60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
61    <DebugSymbols>true</DebugSymbols>
62    <OutputPath>bin\x64\Debug\</OutputPath>
63    <DefineConstants>DEBUG;TRACE</DefineConstants>
64    <DebugType>full</DebugType>
65    <PlatformTarget>x64</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
[4074]67    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2846]68  </PropertyGroup>
69  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
70    <OutputPath>bin\x64\Release\</OutputPath>
71    <DefineConstants>TRACE</DefineConstants>
72    <Optimize>true</Optimize>
73    <DebugType>pdbonly</DebugType>
74    <PlatformTarget>x64</PlatformTarget>
75    <ErrorReport>prompt</ErrorReport>
[4074]76    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
[2846]77  </PropertyGroup>
[2611]78  <ItemGroup>
[4133]79    <Reference Include="HeuristicLab.Common-3.3">
[4296]80      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
[4133]81    </Reference>
[4077]82    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
[4296]83      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
[4077]84    </Reference>
[4078]85    <Reference Include="HeuristicLab.Tracing-3.3">
[4296]86      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Tracing-3.3.dll</HintPath>
[4078]87    </Reference>
[2611]88    <Reference Include="System" />
89    <Reference Include="System.Core">
90      <RequiredTargetFramework>3.5</RequiredTargetFramework>
91    </Reference>
[2904]92    <Reference Include="System.Data.Linq">
93      <RequiredTargetFramework>3.5</RequiredTargetFramework>
94    </Reference>
95    <Reference Include="System.Drawing" />
[4092]96    <Reference Include="System.Transactions" />
[2904]97    <Reference Include="System.Windows.Forms" />
[2611]98    <Reference Include="System.Xml.Linq">
99      <RequiredTargetFramework>3.5</RequiredTargetFramework>
100    </Reference>
101    <Reference Include="System.Data.DataSetExtensions">
102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
103    </Reference>
104    <Reference Include="System.Data" />
105    <Reference Include="System.Xml" />
106  </ItemGroup>
107  <ItemGroup>
[2904]108    <Compile Include="BaseDao.cs" />
[4267]109    <Compile Include="SlaveConfigDao.cs" />
110    <Compile Include="SlaveDao.cs" />
111    <Compile Include="SlaveGroupDao.cs" />
[2904]112    <Compile Include="ContextFactory.cs" />
[3931]113    <Compile Include="HiveDataContext.cs" />
[3011]114    <Compile Include="JobDao.cs" />
[4171]115    <Compile Include="HeuristicLabHiveServerLINQDataAccessPlugin.cs" />
[3011]116    <Compile Include="PluginInfoDao.cs" />
[2611]117    <Compile Include="Properties\AssemblyInfo.cs" />
[2904]118    <Compile Include="Properties\Settings.Designer.cs">
119      <AutoGen>True</AutoGen>
120      <DesignTimeSharedInput>True</DesignTimeSharedInput>
121      <DependentUpon>Settings.settings</DependentUpon>
122    </Compile>
[3022]123    <Compile Include="UptimeCalendarDao.cs" />
[3220]124    <Compile Include="VarBinaryStream.cs" />
[2611]125  </ItemGroup>
126  <ItemGroup>
[4170]127    <None Include="app.config" />
[2611]128    <None Include="HeuristicLab.snk" />
129    <None Include="Properties\AssemblyInfo.frame" />
[4333]130    <None Include="Scripts\UpdateContext.bat" />
[2611]131  </ItemGroup>
132  <ItemGroup>
[4091]133    <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.3\HeuristicLab.DataAccess-3.3.csproj">
134      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
135      <Name>HeuristicLab.DataAccess-3.3</Name>
136    </ProjectReference>
[4074]137    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.3\HeuristicLab.Hive.Contracts-3.3.csproj">
[2904]138      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
[4077]139      <Name>HeuristicLab.Hive.Contracts-3.3</Name>
[2904]140    </ProjectReference>
[4074]141    <ProjectReference Include="..\..\HeuristicLab.Hive.Server.DataAccess\3.3\HeuristicLab.Hive.Server.DataAccess-3.3.csproj">
[3011]142      <Project>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</Project>
[4077]143      <Name>HeuristicLab.Hive.Server.DataAccess-3.3</Name>
[3011]144    </ProjectReference>
[2611]145  </ItemGroup>
[2904]146  <ItemGroup>
147    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
148  </ItemGroup>
149  <ItemGroup>
150    <None Include="Properties\Settings.settings">
151      <Generator>SettingsSingleFileGenerator</Generator>
152      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
153    </None>
154  </ItemGroup>
[3931]155  <ItemGroup>
[4135]156    <Content Include="HiveDataContext.xml">
157      <SubType>Designer</SubType>
158    </Content>
[4333]159    <Content Include="Scripts\cleanHiveDatabase.sql" />
160    <Content Include="Scripts\prepareHiveDatabase.sql" />
[3931]161  </ItemGroup>
[2611]162  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
163  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
164       Other similar extension points exist, see Microsoft.Common.targets.
165  <Target Name="BeforeBuild">
166  </Target>
167  <Target Name="AfterBuild">
168  </Target>
169  -->
170  <PropertyGroup>
171    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
172set ProjectDir=$(ProjectDir)
173set SolutionDir=$(SolutionDir)
174set Outdir=$(Outdir)
175
176call PreBuildEvent.cmd</PreBuildEvent>
177  </PropertyGroup>
178</Project>
Note: See TracBrowser for help on using the repository browser.