Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/09 16:52:49 (15 years ago)
Author:
mkommend
Message:

implemented first version of MainFormBase and DockingMainForm (ticket #716)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm/3.2/HeuristicLab.MainForm.csproj

    r2231 r2233  
    3333    <WarningLevel>4</WarningLevel>
    3434  </PropertyGroup>
     35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
     36    <DebugSymbols>true</DebugSymbols>
     37    <OutputPath>bin\x64\Debug\</OutputPath>
     38    <DefineConstants>DEBUG;TRACE</DefineConstants>
     39    <DebugType>full</DebugType>
     40    <PlatformTarget>x64</PlatformTarget>
     41    <ErrorReport>prompt</ErrorReport>
     42  </PropertyGroup>
     43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
     44    <OutputPath>bin\x64\Release\</OutputPath>
     45    <DefineConstants>TRACE</DefineConstants>
     46    <Optimize>true</Optimize>
     47    <DebugType>pdbonly</DebugType>
     48    <PlatformTarget>x64</PlatformTarget>
     49    <ErrorReport>prompt</ErrorReport>
     50  </PropertyGroup>
     51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     52    <DebugSymbols>true</DebugSymbols>
     53    <OutputPath>bin\x86\Debug\</OutputPath>
     54    <DefineConstants>DEBUG;TRACE</DefineConstants>
     55    <DebugType>full</DebugType>
     56    <PlatformTarget>x86</PlatformTarget>
     57    <ErrorReport>prompt</ErrorReport>
     58  </PropertyGroup>
     59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     60    <OutputPath>bin\x86\Release\</OutputPath>
     61    <DefineConstants>TRACE</DefineConstants>
     62    <Optimize>true</Optimize>
     63    <DebugType>pdbonly</DebugType>
     64    <PlatformTarget>x86</PlatformTarget>
     65    <ErrorReport>prompt</ErrorReport>
     66  </PropertyGroup>
    3567  <ItemGroup>
    3668    <Reference Include="System" />
     
    3870      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    3971    </Reference>
     72    <Reference Include="System.Drawing" />
     73    <Reference Include="System.Windows.Forms" />
    4074    <Reference Include="System.Xml.Linq">
    4175      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    4882  </ItemGroup>
    4983  <ItemGroup>
     84    <Compile Include="DockingMainForm.cs">
     85      <SubType>Form</SubType>
     86    </Compile>
     87    <Compile Include="DockingMainForm.Designer.cs">
     88      <DependentUpon>DockingMainForm.cs</DependentUpon>
     89    </Compile>
     90    <Compile Include="MainFormBase.cs">
     91      <SubType>Form</SubType>
     92    </Compile>
     93    <Compile Include="MainFormBase.Designer.cs">
     94      <DependentUpon>MainFormBase.cs</DependentUpon>
     95    </Compile>
     96    <Compile Include="HeuristicLabMainFormPlugin.cs" />
     97    <Compile Include="Interfaces\IAction.cs" />
     98    <Compile Include="Interfaces\IMainForm.cs" />
     99    <Compile Include="Interfaces\IMenuItem.cs" />
     100    <Compile Include="Interfaces\IModel.cs" />
     101    <Compile Include="Interfaces\IToolStripItem.cs" />
     102    <Compile Include="Interfaces\IUserInterfaceItem.cs" />
     103    <Compile Include="Interfaces\IView.cs" />
    50104    <Compile Include="Properties\AssemblyInfo.cs" />
     105    <Compile Include="ViewBase.cs">
     106      <SubType>UserControl</SubType>
     107    </Compile>
     108    <Compile Include="ViewBase.Designer.cs">
     109      <DependentUpon>ViewBase.cs</DependentUpon>
     110    </Compile>
     111    <Compile Include="DockForm.cs">
     112      <SubType>Form</SubType>
     113    </Compile>
     114    <Compile Include="DockForm.Designer.cs">
     115      <DependentUpon>DockForm.cs</DependentUpon>
     116    </Compile>
    51117  </ItemGroup>
    52118  <ItemGroup>
     
    55121      <Name>HeuristicLab.PluginInfrastructure</Name>
    56122    </ProjectReference>
     123    <ProjectReference Include="..\..\WinFormsUI\WinFormsUI.csproj">
     124      <Project>{C75532C4-765B-418E-B09B-46D36B2ABDB1}</Project>
     125      <Name>WinFormsUI</Name>
     126    </ProjectReference>
    57127  </ItemGroup>
    58128  <ItemGroup>
    59129    <None Include="HeuristicLab.snk" />
    60130    <None Include="Properties\AssemblyInfo.frame" />
     131  </ItemGroup>
     132  <ItemGroup>
     133    <EmbeddedResource Include="MainFormBase.resx">
     134      <DependentUpon>MainFormBase.cs</DependentUpon>
     135    </EmbeddedResource>
     136    <EmbeddedResource Include="DockForm.resx">
     137      <DependentUpon>DockForm.cs</DependentUpon>
     138      <SubType>Designer</SubType>
     139    </EmbeddedResource>
    61140  </ItemGroup>
    62141  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset for help on using the changeset viewer.