Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/HeuristicLab.Hive.Client.Console.csproj @ 852

Last change on this file since 852 was 852, checked in by swagner, 15 years ago

Integrated ConfigMerger into build process (#403).
Refactored pre- and post-build scripts (#403).

File size: 4.7 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>{8B14A35E-DBDF-43EB-B019-23E9FBC5A35E}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Client.Console</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Client.Console-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <StartupObject>
18    </StartupObject>
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="HiveClientConsole.cs">
56      <SubType>Form</SubType>
57    </Compile>
58    <Compile Include="HiveClientConsole.designer.cs">
59      <DependentUpon>HiveClientConsole.cs</DependentUpon>
60    </Compile>
61    <Compile Include="HiveClientConsolePlugin.cs" />
62    <Compile Include="HiveClientConsoleApplication.cs" />
63    <Compile Include="IPAdressTextBox.cs">
64      <SubType>Component</SubType>
65    </Compile>
66    <Compile Include="Properties\AssemblyInfo.cs" />
67    <EmbeddedResource Include="HiveClientConsole.resx">
68      <DependentUpon>HiveClientConsole.cs</DependentUpon>
69    </EmbeddedResource>
70    <EmbeddedResource Include="Properties\Resources.resx">
71      <Generator>ResXFileCodeGenerator</Generator>
72      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
73      <SubType>Designer</SubType>
74    </EmbeddedResource>
75    <Compile Include="Properties\Resources.Designer.cs">
76      <AutoGen>True</AutoGen>
77      <DependentUpon>Resources.resx</DependentUpon>
78    </Compile>
79    <None Include="HeuristicLab.snk" />
80    <None Include="Properties\AssemblyInfo.frame" />
81    <None Include="Properties\Settings.settings">
82      <Generator>SettingsSingleFileGenerator</Generator>
83      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
84    </None>
85    <Compile Include="Properties\Settings.Designer.cs">
86      <AutoGen>True</AutoGen>
87      <DependentUpon>Settings.settings</DependentUpon>
88      <DesignTimeSharedInput>True</DesignTimeSharedInput>
89    </Compile>
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
93      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
94      <Name>HeuristicLab.PluginInfrastructure</Name>
95    </ProjectReference>
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>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
107set ProjectDir=$(ProjectDir)
108set SolutionDir=$(SolutionDir)
109set Outdir=$(Outdir)
110
111call PreBuildEvent.cmd</PreBuildEvent>
112  </PropertyGroup>
113</Project>
Note: See TracBrowser for help on using the repository browser.