Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2520: Created plugin for new persistence implementation

File size: 3.6 KB
RevLine 
[13326]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  </ItemGroup>
47  <ItemGroup>
48    <Compile Include="Plugin.cs" />
49    <Compile Include="Properties\AssemblyInfo.cs" />
50    <Compile Include="Protos\PersistenceMessages.cs" />
51  </ItemGroup>
52  <ItemGroup>
53    <None Include="HeuristicLab.snk" />
54    <None Include="Plugin.cs.frame" />
55    <None Include="Properties\AssemblyInfo.cs.frame" />
56    <None Include="Protos\PersistenceMessages.proto" />
57    <None Include="Protos\ProcessProtos.cmd" />
58  </ItemGroup>
59  <ItemGroup>
60    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
61      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
62      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
63      <Private>False</Private>
64    </ProjectReference>
65  </ItemGroup>
66  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
67  <PropertyGroup>
68    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
69set ProjectDir=$(ProjectDir)
70set SolutionDir=$(SolutionDir)
71set Outdir=$(Outdir)
72
73call "$(ProjectDir)\Protos\ProcessProtos.cmd"
74call PreBuildEvent.cmd
75</PreBuildEvent>
76  </PropertyGroup>
77  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
78       Other similar extension points exist, see Microsoft.Common.targets.
79  <Target Name="BeforeBuild">
80  </Target>
81  <Target Name="AfterBuild">
82  </Target>
83  -->
84</Project>
Note: See TracBrowser for help on using the repository browser.