Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13386 was 13358, checked in by swagner, 8 years ago

#2520: Worked on new persistence implementation

File size: 4.5 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\TransformerAttribute.cs" />
58    <Compile Include="Core\TypeInfo.cs" />
59    <Compile Include="ISerializer.cs" />
60    <Compile Include="ITransformer.cs" />
61    <Compile Include="Plugin.cs" />
62    <Compile Include="Properties\AssemblyInfo.cs" />
63    <Compile Include="Protos\PersistenceMessages.cs" />
64    <Compile Include="Transformers\Transformers.cs" />
65  </ItemGroup>
66  <ItemGroup>
67    <None Include="HeuristicLab.snk" />
68    <None Include="Plugin.cs.frame" />
69    <None Include="Properties\AssemblyInfo.cs.frame" />
70    <None Include="Protos\PersistenceMessages.proto" />
71    <None Include="Protos\ProcessProtos.cmd" />
72  </ItemGroup>
73  <ItemGroup>
74    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
75      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
76      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
77      <Private>False</Private>
78    </ProjectReference>
79    <ProjectReference Include="..\3.3\HeuristicLab.Persistence-3.3.csproj">
80      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
81      <Name>HeuristicLab.Persistence-3.3</Name>
82    </ProjectReference>
83  </ItemGroup>
84  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
85  <PropertyGroup>
86    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
87set ProjectDir=$(ProjectDir)
88set SolutionDir=$(SolutionDir)
89set Outdir=$(Outdir)
90
91call "$(ProjectDir)\Protos\ProcessProtos.cmd"
92call PreBuildEvent.cmd
93</PreBuildEvent>
94  </PropertyGroup>
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102</Project>
Note: See TracBrowser for help on using the repository browser.