Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Persistence/4.0/HeuristicLab.Persistence-4.0.csproj @ 15509

Last change on this file since 15509 was 15509, checked in by jkarder, 6 years ago

#2520: worked on new persistence

  • changed message definitions
  • updated transformers
  • cleaned up
File size: 4.8 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.Protobuf, Version=3.5.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
40      <SpecificVersion>False</SpecificVersion>
41      <HintPath>..\..\bin\Google.Protobuf.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\DataMemberAccessor.cs" />
51    <Compile Include="Core\Index.cs" />
52    <Compile Include="Core\PersistenceException.cs" />
53    <Compile Include="Core\StaticCache.cs" />
54    <Compile Include="Core\Mapper.cs" />
55    <Compile Include="Core\ProtoBufSerializer.cs" />
56    <Compile Include="Core\ReferenceEqualityComparer.cs" />
57    <Compile Include="Core\Serializer.cs" />
58    <Compile Include="Core\StorableAttribute.cs" />
59    <Compile Include="Core\StorableClassAttribute.cs" />
60    <Compile Include="Core\StorableClassType.cs" />
61    <Compile Include="Core\StorableConstructorAttribute.cs" />
62    <Compile Include="Core\StorableConstructorFlag.cs" />
63    <Compile Include="Core\StorableHookAttribute.cs" />
64    <Compile Include="Core\StorableMemberSelection.cs" />
65    <Compile Include="Core\StorableTypeAttribute.cs" />
66    <Compile Include="Core\Transformer.cs" />
67    <Compile Include="Core\StorableConversionAttribute.cs" />
68    <Compile Include="Core\TransformerAttribute.cs" />
69    <Compile Include="Core\TypeInfo.cs" />
70    <Compile Include="ISerializer.cs" />
71    <Compile Include="ITransformer.cs" />
72    <Compile Include="Plugin.cs" />
73    <Compile Include="Properties\AssemblyInfo.cs" />
74    <Compile Include="Protos\PersistenceMessages.cs" />
75    <Compile Include="Transformers\Transformers.cs" />
76  </ItemGroup>
77  <ItemGroup>
78    <None Include="HeuristicLab.snk" />
79    <None Include="Plugin.cs.frame" />
80    <None Include="Properties\AssemblyInfo.cs.frame" />
81    <None Include="Protos\PersistenceMessages.proto" />
82    <None Include="Protos\ProcessProtos.cmd" />
83  </ItemGroup>
84  <ItemGroup>
85    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
86      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
87      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
88      <Private>False</Private>
89    </ProjectReference>
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <PropertyGroup>
93    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
94set ProjectDir=$(ProjectDir)
95set SolutionDir=$(SolutionDir)
96set Outdir=$(Outdir)
97
98call "$(ProjectDir)\Protos\ProcessProtos.cmd"
99call PreBuildEvent.cmd
100</PreBuildEvent>
101  </PropertyGroup>
102  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
103       Other similar extension points exist, see Microsoft.Common.targets.
104  <Target Name="BeforeBuild">
105  </Target>
106  <Target Name="AfterBuild">
107  </Target>
108  -->
109</Project>
Note: See TracBrowser for help on using the repository browser.