Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 740 was 713, checked in by svonolfe, 16 years ago

Creation of HiveServer Projects (#333)

File size: 4.5 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.Xml.Linq">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data.DataSetExtensions">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Data" />
49    <Reference Include="System.Deployment" />
50    <Reference Include="System.Drawing" />
51    <Reference Include="System.Windows.Forms" />
52    <Reference Include="System.Xml" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="Properties\AssemblyInfo.cs" />
56    <Compile Include="HiveServerPlugin.cs" />
57    <Compile Include="MainForm.cs">
58      <SubType>Form</SubType>
59    </Compile>
60    <Compile Include="MainForm.Designer.cs">
61      <DependentUpon>MainForm.cs</DependentUpon>
62    </Compile>
63    <Compile Include="HiveServerApplication.cs" />
64    <EmbeddedResource Include="MainForm.resx">
65      <DependentUpon>MainForm.cs</DependentUpon>
66    </EmbeddedResource>
67    <EmbeddedResource Include="Properties\Resources.resx">
68      <Generator>ResXFileCodeGenerator</Generator>
69      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
70      <SubType>Designer</SubType>
71    </EmbeddedResource>
72    <Compile Include="Properties\Resources.Designer.cs">
73      <AutoGen>True</AutoGen>
74      <DependentUpon>Resources.resx</DependentUpon>
75    </Compile>
76    <None Include="Properties\AssemblyInfo.frame" />
77    <None Include="HeuristicLab.snk" />
78    <None Include="Properties\Settings.settings">
79      <Generator>SettingsSingleFileGenerator</Generator>
80      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
81    </None>
82    <Compile Include="Properties\Settings.Designer.cs">
83      <AutoGen>True</AutoGen>
84      <DependentUpon>Settings.settings</DependentUpon>
85      <DesignTimeSharedInput>True</DesignTimeSharedInput>
86    </Compile>
87  </ItemGroup>
88  <ItemGroup>
89    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
90      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
91      <Name>HeuristicLab.PluginInfrastructure</Name>
92    </ProjectReference>
93  </ItemGroup>
94  <ItemGroup>
95    <Folder Include="Interfaces\" />
96  </ItemGroup>
97  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
98  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
99       Other similar extension points exist, see Microsoft.Common.targets.
100  <Target Name="BeforeBuild">
101  </Target>
102  <Target Name="AfterBuild">
103  </Target>
104  -->
105  <PropertyGroup>
106    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
107  </PropertyGroup>
108</Project>
Note: See TracBrowser for help on using the repository browser.