Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj @ 4593

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

recreated basic project structure (#1233)

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>{EC2C8109-6E1E-4C88-9A2B-908CFF2EF4AC}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Hive.DataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Hive.DataAccess-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="HeuristicLab.Common-3.3">
35      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
36    </Reference>
37    <Reference Include="HeuristicLab.Core-3.3">
38      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Persistence-3.3">
41      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
44      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Tracing-3.3, Version=3.2.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
47    <Reference Include="System" />
48    <Reference Include="System.Core" />
49    <Reference Include="System.Data.Linq" />
50    <Reference Include="System.Transactions" />
51    <Reference Include="System.Xml.Linq" />
52    <Reference Include="System.Data.DataSetExtensions" />
53    <Reference Include="System.Data" />
54    <Reference Include="System.Xml" />
55  </ItemGroup>
56  <ItemGroup>
57    <Compile Include="ContextFactory.cs" />
58    <Compile Include="HeuristicLabServicesHiveDataAccessPlugin.cs" />
59    <Compile Include="HiveDataContext.cs">
60      <DependentUpon>HiveDataContext.dbml</DependentUpon>
61    </Compile>
62    <Compile Include="HiveDataContext.designer.cs">
63      <AutoGen>True</AutoGen>
64      <DesignTime>True</DesignTime>
65      <DependentUpon>HiveDataContext.dbml</DependentUpon>
66    </Compile>
67    <Compile Include="Interfaces\IContextFactory.cs" />
68    <Compile Include="Properties\AssemblyInfo.cs" />
69    <Compile Include="Properties\Settings.Designer.cs">
70      <AutoGen>True</AutoGen>
71      <DesignTimeSharedInput>True</DesignTimeSharedInput>
72      <DependentUpon>Settings.settings</DependentUpon>
73    </Compile>
74  </ItemGroup>
75  <ItemGroup>
76    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
77  </ItemGroup>
78  <ItemGroup>
79    <None Include="app.config" />
80    <None Include="HiveDataContext.dbml">
81      <Generator>MSLinqToSQLGenerator</Generator>
82      <LastGenOutput>HiveDataContext.designer.cs</LastGenOutput>
83      <SubType>Designer</SubType>
84    </None>
85    <None Include="Properties\Settings.settings">
86      <Generator>SettingsSingleFileGenerator</Generator>
87      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
88    </None>
89  </ItemGroup>
90  <ItemGroup>
91    <None Include="HiveDataContext.dbml.layout">
92      <DependentUpon>HiveDataContext.dbml</DependentUpon>
93    </None>
94  </ItemGroup>
95  <ItemGroup>
96    <ProjectReference Include="..\..\HeuristicLab.Services.Hive.Common\3.3\HeuristicLab.Services.Hive.Common-3.3.csproj">
97      <Project>{14424A16-48D4-445E-80BF-DDF617548BBB}</Project>
98      <Name>HeuristicLab.Services.Hive.Common-3.3</Name>
99    </ProjectReference>
100  </ItemGroup>
101  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
102  <PropertyGroup>
103    <PostBuildEvent>set ProjectName=$(ProjectName)
104set TargetPath=$(TargetPath)
105call $(SolutionDir)/CopyAssembly.cmd</PostBuildEvent>
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.