Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAccess.ADOHelper/HeuristicLab.DataAccess.ADOHelper.csproj @ 1468

Last change on this file since 1468 was 1468, checked in by svonolfe, 16 years ago

Added transaction management (#527)

File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>{5CDACE54-5FB2-4344-A21C-963F63CB7C2B}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.DataAccess.ADOHelper</RootNamespace>
12    <AssemblyName>HeuristicLab.DataAccess.ADOHelper-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
38    <DebugSymbols>true</DebugSymbols>
39    <OutputPath>bin\x86\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <DebugType>full</DebugType>
42    <PlatformTarget>x86</PlatformTarget>
43    <ErrorReport>prompt</ErrorReport>
44  </PropertyGroup>
45  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
46    <OutputPath>bin\x86\Release\</OutputPath>
47    <DefineConstants>TRACE</DefineConstants>
48    <Optimize>true</Optimize>
49    <DebugType>pdbonly</DebugType>
50    <PlatformTarget>x86</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
53  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
54  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
55       Other similar extension points exist, see Microsoft.Common.targets.
56  <Target Name="BeforeBuild">
57  </Target>
58  <Target Name="AfterBuild">
59  </Target>
60  -->
61  <ItemGroup>
62    <None Include="HeuristicLab.snk" />
63    <None Include="Properties\AssemblyInfo.frame" />
64  </ItemGroup>
65  <ItemGroup>
66    <Compile Include="DataAccessADOHelperPlugin.cs" />
67    <Compile Include="DataAdapterBase.cs" />
68    <Compile Include="DataAdapterWrapperBase.cs" />
69    <Compile Include="IDataAdapterWrapper.cs" />
70    <Compile Include="Session.cs" />
71    <Compile Include="SessionFactory.cs" />
72    <Compile Include="Transaction.cs" />
73    <Compile Include="TransactionManager.cs" />
74  </ItemGroup>
75  <ItemGroup>
76    <ProjectReference Include="..\HeuristicLab.DataAccess\HeuristicLab.DataAccess.csproj">
77      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
78      <Name>HeuristicLab.DataAccess</Name>
79    </ProjectReference>
80    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
81      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
82      <Name>HeuristicLab.PluginInfrastructure</Name>
83    </ProjectReference>
84  </ItemGroup>
85  <ItemGroup>
86    <Reference Include="System" />
87    <Reference Include="System.Core">
88      <RequiredTargetFramework>3.5</RequiredTargetFramework>
89    </Reference>
90    <Reference Include="System.Data" />
91    <Reference Include="System.Data.DataSetExtensions">
92      <RequiredTargetFramework>3.5</RequiredTargetFramework>
93    </Reference>
94    <Reference Include="System.Data.Linq">
95      <RequiredTargetFramework>3.5</RequiredTargetFramework>
96    </Reference>
97    <Reference Include="System.XML" />
98  </ItemGroup>
99  <PropertyGroup>
100    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
101set ProjectDir=$(ProjectDir)
102set SolutionDir=$(SolutionDir)
103set Outdir=$(Outdir)
104
105call PreBuildEvent.cmd</PreBuildEvent>
106  </PropertyGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.