Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/HeuristicLab.Services.Hive.Common-3.4.csproj @ 5306

Last change on this file since 5306 was 5264, checked in by ascheibe, 14 years ago

#1233 switch to .NET 4

File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{14424A16-48D4-445E-80BF-DDF617548BBB}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Hive.Common</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Hive.Common-3.4</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="HeuristicLab.Common-3.3">
42      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Core-3.3">
45      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
46    </Reference>
47    <Reference Include="HeuristicLab.Persistence-3.3">
48      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Persistence-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
51      <HintPath>..\..\..\..\..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
52    </Reference>
53    <Reference Include="System" />
54    <Reference Include="System.Core" />
55    <Reference Include="System.Runtime.Serialization" />
56    <Reference Include="System.ServiceModel" />
57    <Reference Include="System.Transactions" />
58    <Reference Include="System.Xml.Linq" />
59    <Reference Include="System.Data.DataSetExtensions" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="ApplicationConstants.cs" />
65    <None Include="HeuristicLabServicesHiveCommonPlugin.cs.frame" />
66    <Compile Include="DataTransfer\Appointment.cs" />
67    <Compile Include="DataTransfer\HeartBeat.cs" />
68    <Compile Include="DataTransfer\HiveExperiment.cs" />
69    <Compile Include="DataTransfer\HiveItem.cs" />
70    <Compile Include="DataTransfer\HiveItemBase.cs" />
71    <Compile Include="DataTransfer\PluginData.cs" />
72    <Compile Include="DataTransfer\Plugin.cs" />
73    <Compile Include="DataTransfer\Job.cs" />
74    <Compile Include="DataTransfer\LightweightJob.cs" />
75    <Compile Include="DataTransfer\JobState.cs" />
76    <Compile Include="MessageContainer.cs" />
77    <Compile Include="DataTransfer\NamedHiveItem.cs" />
78    <Compile Include="DataTransfer\Resource.cs" />
79    <Compile Include="DataTransfer\JobData.cs" />
80    <Compile Include="DataTransfer\Slave.cs" />
81    <Compile Include="DataTransfer\SlaveGroup.cs" />
82    <Compile Include="DataTransfer\SlaveState.cs" />
83    <Compile Include="HeuristicLabServicesHiveCommonPlugin.cs" />
84    <Compile Include="Properties\AssemblyInfo.cs" />
85    <None Include="Properties\AssemblyInfo.cs.frame" />
86    <Compile Include="ServiceContracts\IHiveService.cs" />
87  </ItemGroup>
88  <ItemGroup>
89    <None Include="HeuristicLab.snk" />
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <PropertyGroup>
93    <PostBuildEvent>set ProjectName=$(ProjectName)
94set TargetPath=$(TargetPath)
95call $(SolutionDir)/CopyAssembly.cmd</PostBuildEvent>
96  </PropertyGroup>
97  <PropertyGroup>
98    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
99set ProjectDir=$(ProjectDir)
100set SolutionDir=$(SolutionDir)
101set Outdir=$(Outdir)
102
103call PreBuildEvent.cmd</PreBuildEvent>
104  </PropertyGroup>
105  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
106       Other similar extension points exist, see Microsoft.Common.targets.
107  <Target Name="BeforeBuild">
108  </Target>
109  <Target Name="AfterBuild">
110  </Target>
111  -->
112</Project>
Note: See TracBrowser for help on using the repository browser.