Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/Persistence/HeuristicLab.Persistence.csproj @ 1357

Last change on this file since 1357 was 1357, checked in by epitzer, 15 years ago

Pluginification and major refactoring. (#506)

File size: 3.9 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>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Persistence</RootNamespace>
12    <AssemblyName>Persistence</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>TRACE;DEBUG</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  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
38  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
39       Other similar extension points exist, see Microsoft.Common.targets.
40  <Target Name="BeforeBuild">
41  </Target>
42  <Target Name="AfterBuild">
43  </Target>
44  -->
45  <ItemGroup>
46    <Reference Include="System" />
47    <Reference Include="System.Core">
48      <RequiredTargetFramework>3.5</RequiredTargetFramework>
49    </Reference>
50    <Reference Include="System.Data" />
51    <Reference Include="System.Data.DataSetExtensions">
52      <RequiredTargetFramework>3.5</RequiredTargetFramework>
53    </Reference>
54    <Reference Include="System.Xml" />
55  </ItemGroup>
56  <ItemGroup>
57    <Compile Include="ArrayFormatters.cs" />
58    <Compile Include="EnumerableFormatters.cs" />
59    <Compile Include="HeuristicLabPersistencePlugin.cs" />
60    <Compile Include="DeSerializer.cs" />
61    <Compile Include="Interfaces\IDecomposer.cs" />
62    <Compile Include="Interfaces\IFormatter.cs" />
63    <Compile Include="PersistenceConfiguration.cs" />
64    <Compile Include="Properties\AssemblyInfo.cs" />
65    <Compile Include="Serializer.cs" />
66    <Compile Include="Decomposers.cs" />
67    <Compile Include="PrimitiveFormatters.cs" />
68    <Compile Include="Interfaces\Tokens.cs" />
69    <Compile Include="Util.cs" />
70    <Compile Include="StorableAttribute.cs" />
71    <Compile Include="XmlFormatter.cs" />
72    <Compile Include="XmlParser.cs" />
73  </ItemGroup>
74  <PropertyGroup>
75    <PreBuildEvent>SubWCRev "$(ProjectDir)\" "$(ProjectDir)\Properties\AssemblyInfo.frame" "$(ProjectDir)\Properties\AssemblyInfo.cs"</PreBuildEvent>
76    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
77set ProjectDir=$(ProjectDir)
78set SolutionDir=$(SolutionDir)
79set Outdir=$(Outdir)
80
81REM call CopyAssemblies.cmd
82REM call UpdateLocalInstallation.cmd</PostBuildEvent>
83  </PropertyGroup>
84  <ItemGroup>
85    <None Include="HeuristicLab.snk" />
86  </ItemGroup>
87  <ItemGroup>
88    <ProjectReference Include="..\..\..\..\trunk\sources\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
89      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
90      <Name>HeuristicLab.PluginInfrastructure</Name>
91    </ProjectReference>
92  </ItemGroup>
93</Project>
Note: See TracBrowser for help on using the repository browser.