Free cookie consent management tool by TermsFeed Policy Generator

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

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

Convenience method for XML serialization and de-serizliation. (#506)

File size: 5.0 KB
RevLine 
[1357]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>
[1363]11    <RootNamespace>HeuristicLab.Persistence</RootNamespace>
12    <AssemblyName>HeuristicLab.Persistence</AssemblyName>
[1357]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>
[1361]57    <Compile Include="Default\Decomposers\EnumerableDecomposer.cs" />
58    <Compile Include="Default\Decomposers\ArrayDecomposer.cs" />
59    <Compile Include="Default\Decomposers\KeyValuePairDecomposer.cs" />
60    <Compile Include="Default\Decomposers\DictionaryDecomposer.cs" />
61    <Compile Include="Default\Xml\Compact\IntArray2XmlFormatters.cs" />
62    <Compile Include="Default\Xml\Compact\DoubleArray2XmlFormatters.cs" />
63    <Compile Include="Default\Xml\Compact\DoubleList2XmlFormatter.cs" />
64    <Compile Include="Default\Xml\Compact\NumberEnumeration2XmlFormatter.cs" />
65    <Compile Include="Default\Xml\Compact\NumberArray2XmlFormatters.cs" />
[1360]66    <Compile Include="Core\DataMemberAccessor.cs" />
[1361]67    <Compile Include="Default\Xml\Compact\IntList2XmlFormatter.cs" />
68    <Compile Include="Default\Xml\Primitive\Sting2XmlFormatter.cs" />
69    <Compile Include="Default\Xml\Primitive\Int2XmlFormatter.cs" />
70    <Compile Include="Default\Xml\Primitive\Double2XmlFormatter.cs" />
71    <Compile Include="Default\Xml\Primitive\Boolean2XmlFormatter.cs" />
72    <Compile Include="Default\Xml\Primitive\DateTime2XmlFormatter.cs" />
73    <Compile Include="Default\Xml\XmlFormat.cs" />
[1357]74    <Compile Include="HeuristicLabPersistencePlugin.cs" />
[1360]75    <Compile Include="Core\DeSerializer.cs" />
[1357]76    <Compile Include="Interfaces\IDecomposer.cs" />
77    <Compile Include="Interfaces\IFormatter.cs" />
[1360]78    <Compile Include="Core\PersistenceConfiguration.cs" />
[1357]79    <Compile Include="Properties\AssemblyInfo.cs" />
[1360]80    <Compile Include="Core\Serializer.cs" />
[1357]81    <Compile Include="Interfaces\Tokens.cs" />
82    <Compile Include="Util.cs" />
[1360]83    <Compile Include="Core\StorableAttribute.cs" />
[1361]84    <Compile Include="Default\Xml\XmlGenerator.cs" />
85    <Compile Include="Default\Xml\XmlParser.cs" />
[1357]86  </ItemGroup>
87  <PropertyGroup>
88    <PreBuildEvent>SubWCRev "$(ProjectDir)\" "$(ProjectDir)\Properties\AssemblyInfo.frame" "$(ProjectDir)\Properties\AssemblyInfo.cs"</PreBuildEvent>
89    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
90set ProjectDir=$(ProjectDir)
91set SolutionDir=$(SolutionDir)
92set Outdir=$(Outdir)
93
94REM call CopyAssemblies.cmd
95REM call UpdateLocalInstallation.cmd</PostBuildEvent>
96  </PropertyGroup>
97  <ItemGroup>
98    <None Include="HeuristicLab.snk" />
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\..\..\..\trunk\sources\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
102      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
103      <Name>HeuristicLab.PluginInfrastructure</Name>
104    </ProjectReference>
105  </ItemGroup>
106</Project>
Note: See TracBrowser for help on using the repository browser.