Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/HeuristicLab.Hive.Server.csproj @ 744

Last change on this file since 744 was 744, checked in by msteinbi, 15 years ago

New project Hive.Contracts created. Includes BusinessObjects and Interfaces (#331)

File size: 4.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{A04AE929-D0E1-466D-A9D3-BF3C4B2C209F}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Server</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Server-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="System" />
39    <Reference Include="System.Core">
40      <RequiredTargetFramework>3.5</RequiredTargetFramework>
41    </Reference>
42    <Reference Include="System.Runtime.Serialization">
43      <RequiredTargetFramework>3.0</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.ServiceModel">
46      <RequiredTargetFramework>3.0</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Xml.Linq">
49      <RequiredTargetFramework>3.5</RequiredTargetFramework>
50    </Reference>
51    <Reference Include="System.Data.DataSetExtensions">
52      <RequiredTargetFramework>3.5</RequiredTargetFramework>
53    </Reference>
54    <Reference Include="System.Data" />
55    <Reference Include="System.Deployment" />
56    <Reference Include="System.Drawing" />
57    <Reference Include="System.Windows.Forms" />
58    <Reference Include="System.Xml" />
59  </ItemGroup>
60  <ItemGroup>
61    <Compile Include="Properties\AssemblyInfo.cs" />
62    <Compile Include="HiveServerPlugin.cs" />
63    <Compile Include="MainForm.cs">
64      <SubType>Form</SubType>
65    </Compile>
66    <Compile Include="MainForm.Designer.cs">
67      <DependentUpon>MainForm.cs</DependentUpon>
68    </Compile>
69    <Compile Include="HiveServerApplication.cs" />
70    <EmbeddedResource Include="MainForm.resx">
71      <DependentUpon>MainForm.cs</DependentUpon>
72    </EmbeddedResource>
73    <EmbeddedResource Include="Properties\Resources.resx">
74      <Generator>ResXFileCodeGenerator</Generator>
75      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
76      <SubType>Designer</SubType>
77    </EmbeddedResource>
78    <Compile Include="Properties\Resources.Designer.cs">
79      <AutoGen>True</AutoGen>
80      <DependentUpon>Resources.resx</DependentUpon>
81    </Compile>
82    <None Include="Properties\AssemblyInfo.frame" />
83    <None Include="HeuristicLab.snk" />
84    <None Include="Properties\Settings.settings">
85      <Generator>SettingsSingleFileGenerator</Generator>
86      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
87    </None>
88    <Compile Include="Properties\Settings.Designer.cs">
89      <AutoGen>True</AutoGen>
90      <DependentUpon>Settings.settings</DependentUpon>
91      <DesignTimeSharedInput>True</DesignTimeSharedInput>
92    </Compile>
93  </ItemGroup>
94  <ItemGroup>
95    <ProjectReference Include="..\HeuristicLab.Hive.Contracts\HeuristicLab.Hive.Contracts.csproj">
96      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
97      <Name>HeuristicLab.Hive.Contracts</Name>
98    </ProjectReference>
99    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
100      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
101      <Name>HeuristicLab.PluginInfrastructure</Name>
102    </ProjectReference>
103  </ItemGroup>
104  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
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  <PropertyGroup>
113    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
114  </PropertyGroup>
115</Project>
Note: See TracBrowser for help on using the repository browser.