Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence.GUI/HeuristicLab.Persistence.GUI.csproj @ 1458

Last change on this file since 1458 was 1454, checked in by epitzer, 15 years ago

merge persistence exploration branch into trunk as HL plugin. (#506)

File size: 3.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>{A9E282EA-180F-4233-B809-AEDF0787545C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Persistence.GUI</RootNamespace>
12    <AssemblyName>HeuristicLab.Persistence.GUI-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <TargetFrameworkSubset>Full</TargetFrameworkSubset>
18  </PropertyGroup>
19  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
37  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
38       Other similar extension points exist, see Microsoft.Common.targets.
39  <Target Name="BeforeBuild">
40  </Target>
41  <Target Name="AfterBuild">
42  </Target>
43  -->
44  <ItemGroup>
45    <ProjectReference Include="..\HeuristicLab.Persistence\HeuristicLab.Persistence.csproj">
46      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
47      <Name>HeuristicLab.Persistence</Name>
48    </ProjectReference>
49    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
50      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
51      <Name>HeuristicLab.PluginInfrastructure</Name>
52    </ProjectReference>
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="HeuristicLabPersistenceGUIPlugin.cs" />
56    <Compile Include="PersistenceConfigurationForm.cs">
57      <SubType>Form</SubType>
58    </Compile>
59    <Compile Include="PersistenceConfigurationForm.Designer.cs">
60      <DependentUpon>PersistenceConfigurationForm.cs</DependentUpon>
61    </Compile>
62    <Compile Include="Properties\AssemblyInfo.cs" />
63  </ItemGroup>
64  <ItemGroup>
65    <Reference Include="System" />
66    <Reference Include="System.Core">
67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
68    </Reference>
69    <Reference Include="System.Data" />
70    <Reference Include="System.Drawing" />
71    <Reference Include="System.Windows.Forms" />
72    <Reference Include="System.Xml" />
73  </ItemGroup>
74  <ItemGroup>
75    <EmbeddedResource Include="PersistenceConfigurationForm.resx">
76      <DependentUpon>PersistenceConfigurationForm.cs</DependentUpon>
77    </EmbeddedResource>
78  </ItemGroup>
79  <ItemGroup>
80    <None Include="app.config" />
81  </ItemGroup>
82  <PropertyGroup>
83    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
84set ProjectDir=$(ProjectDir)
85set SolutionDir=$(SolutionDir)
86set Outdir=$(Outdir)
87
88call PreBuildEvent.cmd</PreBuildEvent>
89  </PropertyGroup>
90</Project>
Note: See TracBrowser for help on using the repository browser.