Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/HeuristicLab.Persistence-4.0.csproj @ 14771

Last change on this file since 14771 was 14771, checked in by gkronber, 7 years ago

#2520 added versions to storable types and implemented conversion unit test

File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{B1663091-8156-4DEB-9E37-5B19810A4644}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Persistence</RootNamespace>
11    <AssemblyName>HeuristicLab.Persistence-4.0</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>..\..\bin\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <DebugType>pdbonly</DebugType>
26    <Optimize>true</Optimize>
27    <OutputPath>bin\Release\</OutputPath>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <PropertyGroup>
33    <SignAssembly>true</SignAssembly>
34  </PropertyGroup>
35  <PropertyGroup>
36    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
37  </PropertyGroup>
38  <ItemGroup>
39    <Reference Include="Google.ProtocolBuffers-2.4.1.473, Version=2.4.1.473, Culture=neutral, PublicKeyToken=17b3b1f090c3ea48, processorArchitecture=MSIL">
40      <SpecificVersion>False</SpecificVersion>
41      <HintPath>..\..\bin\Google.ProtocolBuffers-2.4.1.473.dll</HintPath>
42    </Reference>
43    <Reference Include="System" />
44    <Reference Include="System.Core" />
45    <Reference Include="System.Data" />
46    <Reference Include="System.Drawing" />
47  </ItemGroup>
48  <ItemGroup>
49    <Compile Include="Core\ComponentInfo.cs" />
50    <Compile Include="Core\Index.cs" />
51    <Compile Include="Core\StaticCache.cs" />
52    <Compile Include="Core\Mapper.cs" />
53    <Compile Include="Core\ProtoBufSerializer.cs" />
54    <Compile Include="Core\ReferenceEqualityComparer.cs" />
55    <Compile Include="Core\Serializer.cs" />
56    <Compile Include="Core\Transformer.cs" />
57    <Compile Include="Core\StorableConversionAttribute.cs" />
58    <Compile Include="Core\TransformerAttribute.cs" />
59    <Compile Include="Core\TypeInfo.cs" />
60    <Compile Include="ISerializer.cs" />
61    <Compile Include="ITransformer.cs" />
62    <Compile Include="Plugin.cs" />
63    <Compile Include="Properties\AssemblyInfo.cs" />
64    <Compile Include="Protos\PersistenceMessages.cs" />
65    <Compile Include="Transformers\StorableClassTransformer.cs" />
66    <Compile Include="Transformers\Transformers.cs" />
67  </ItemGroup>
68  <ItemGroup>
69    <None Include="HeuristicLab.snk" />
70    <None Include="Plugin.cs.frame" />
71    <None Include="Properties\AssemblyInfo.cs.frame" />
72    <None Include="Protos\PersistenceMessages.proto" />
73    <None Include="Protos\ProcessProtos.cmd" />
74  </ItemGroup>
75  <ItemGroup>
76    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
77      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
78      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
79      <Private>False</Private>
80    </ProjectReference>
81    <ProjectReference Include="..\3.3\HeuristicLab.Persistence-3.3.csproj">
82      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
83      <Name>HeuristicLab.Persistence-3.3</Name>
84    </ProjectReference>
85  </ItemGroup>
86  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87  <PropertyGroup>
88    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89set ProjectDir=$(ProjectDir)
90set SolutionDir=$(SolutionDir)
91set Outdir=$(Outdir)
92
93call "$(ProjectDir)\Protos\ProcessProtos.cmd"
94call PreBuildEvent.cmd
95</PreBuildEvent>
96  </PropertyGroup>
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104</Project>
Note: See TracBrowser for help on using the repository browser.