Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAccess/3.2/HeuristicLab.DataAccess-3.2.csproj @ 1597

Last change on this file since 1597 was 1597, checked in by svonolfe, 15 years ago

Refactored ResourceAdapter (polymorphic implementation) (#372)

File size: 7.0 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>{9076697B-C151-46CD-95BC-1D059492B478}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.DataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.DataAccess-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <PublishUrl>publish\</PublishUrl>
18    <Install>true</Install>
19    <InstallFrom>Disk</InstallFrom>
20    <UpdateEnabled>false</UpdateEnabled>
21    <UpdateMode>Foreground</UpdateMode>
22    <UpdateInterval>7</UpdateInterval>
23    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
24    <UpdatePeriodically>false</UpdatePeriodically>
25    <UpdateRequired>false</UpdateRequired>
26    <MapFileExtensions>true</MapFileExtensions>
27    <ApplicationRevision>0</ApplicationRevision>
28    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29    <IsWebBootstrapper>false</IsWebBootstrapper>
30    <UseApplicationTrust>false</UseApplicationTrust>
31    <BootstrapperEnabled>true</BootstrapperEnabled>
32    <StartupObject>
33    </StartupObject>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36    <DebugSymbols>true</DebugSymbols>
37    <DebugType>full</DebugType>
38    <Optimize>false</Optimize>
39    <OutputPath>bin\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <ErrorReport>prompt</ErrorReport>
42    <WarningLevel>4</WarningLevel>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45    <DebugType>pdbonly</DebugType>
46    <Optimize>true</Optimize>
47    <OutputPath>bin\Release\</OutputPath>
48    <DefineConstants>TRACE</DefineConstants>
49    <ErrorReport>prompt</ErrorReport>
50    <WarningLevel>4</WarningLevel>
51  </PropertyGroup>
52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
53    <DebugSymbols>true</DebugSymbols>
54    <OutputPath>bin\x86\Debug\</OutputPath>
55    <DefineConstants>DEBUG;TRACE</DefineConstants>
56    <DebugType>full</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58    <ErrorReport>prompt</ErrorReport>
59  </PropertyGroup>
60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
61    <OutputPath>bin\x86\Release\</OutputPath>
62    <DefineConstants>TRACE</DefineConstants>
63    <Optimize>true</Optimize>
64    <DebugType>pdbonly</DebugType>
65    <PlatformTarget>x86</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
67  </PropertyGroup>
68  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
69    <DebugSymbols>true</DebugSymbols>
70    <OutputPath>bin\x64\Debug\</OutputPath>
71    <DefineConstants>DEBUG;TRACE</DefineConstants>
72    <DebugType>full</DebugType>
73    <PlatformTarget>x64</PlatformTarget>
74    <ErrorReport>prompt</ErrorReport>
75  </PropertyGroup>
76  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
77    <OutputPath>bin\x64\Release\</OutputPath>
78    <DefineConstants>TRACE</DefineConstants>
79    <Optimize>true</Optimize>
80    <DebugType>pdbonly</DebugType>
81    <PlatformTarget>x64</PlatformTarget>
82    <ErrorReport>prompt</ErrorReport>
83  </PropertyGroup>
84  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
85  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86       Other similar extension points exist, see Microsoft.Common.targets.
87  <Target Name="BeforeBuild">
88  </Target>
89  <Target Name="AfterBuild">
90  </Target>
91  -->
92  <ItemGroup>
93    <None Include="Properties\AssemblyInfo.frame" />
94    <None Include="HeuristicLab.snk" />
95  </ItemGroup>
96  <ItemGroup>
97    <Compile Include="Interfaces\IPolymorphicDataAdapter.cs" />
98    <Compile Include="Properties\AssemblyInfo.cs" />
99    <Compile Include="DataAccessPlugin.cs" />
100    <Compile Include="Interfaces\ISession.cs" />
101    <Compile Include="Interfaces\ISessionFactory.cs" />
102    <Compile Include="Interfaces\ITransaction.cs" />
103    <Compile Include="Interfaces\ITransactionManager.cs" />
104    <Compile Include="PersistableObject.cs" />
105    <Compile Include="Interfaces\IDataAdapter.cs" />
106    <Compile Include="Interfaces\IPersistableObject.cs" />
107  </ItemGroup>
108  <ItemGroup>
109    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
110      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
111      <Name>HeuristicLab.Core-3.2</Name>
112    </ProjectReference>
113    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
114      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
115      <Name>HeuristicLab.PluginInfrastructure</Name>
116    </ProjectReference>
117  </ItemGroup>
118  <PropertyGroup>
119    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
120set ProjectDir=$(ProjectDir)
121set SolutionDir=$(SolutionDir)
122set Outdir=$(Outdir)
123
124call PreBuildEvent.cmd</PreBuildEvent>
125  </PropertyGroup>
126  <ItemGroup>
127    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
128      <Visible>False</Visible>
129      <ProductName>.NET Framework Client Profile</ProductName>
130      <Install>false</Install>
131    </BootstrapperPackage>
132    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
133      <Visible>False</Visible>
134      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
135      <Install>false</Install>
136    </BootstrapperPackage>
137    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
138      <Visible>False</Visible>
139      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
140      <Install>false</Install>
141    </BootstrapperPackage>
142    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
143      <Visible>False</Visible>
144      <ProductName>.NET Framework 3.5</ProductName>
145      <Install>false</Install>
146    </BootstrapperPackage>
147    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
148      <Visible>False</Visible>
149      <ProductName>.NET Framework 3.5 SP1</ProductName>
150      <Install>true</Install>
151    </BootstrapperPackage>
152    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
153      <Visible>False</Visible>
154      <ProductName>Windows Installer 3.1</ProductName>
155      <Install>true</Install>
156    </BootstrapperPackage>
157  </ItemGroup>
158  <ItemGroup>
159    <Reference Include="System" />
160    <Reference Include="System.Runtime.Serialization">
161      <RequiredTargetFramework>3.0</RequiredTargetFramework>
162    </Reference>
163    <Reference Include="System.Xml" />
164  </ItemGroup>
165</Project>
Note: See TracBrowser for help on using the repository browser.