Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/02/11 18:25:00 (13 years ago)
Author:
ascheibe
Message:

#1233 added plugin frame file to Slave HL App

Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.App/3.3
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.App/3.3

    • Property svn:ignore
      •  

        old new  
         1HeuristicLabClientsHiveSlaveAppPlugin.cs
        12bin
        23obj
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.App/3.3/HeuristicLab.Clients.Hive.Slave.App-3.3.csproj

    r6703 r6704  
    33  <PropertyGroup>
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    5     <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
     5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    66    <ProductVersion>8.0.30703</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
     
    1616    <FileAlignment>512</FileAlignment>
    1717  </PropertyGroup>
    18   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    19     <PlatformTarget>x86</PlatformTarget>
     18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    2019    <DebugSymbols>true</DebugSymbols>
    2120    <DebugType>full</DebugType>
     
    2625    <WarningLevel>4</WarningLevel>
    2726  </PropertyGroup>
    28   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    29     <PlatformTarget>x86</PlatformTarget>
     27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    3028    <DebugType>pdbonly</DebugType>
    3129    <Optimize>true</Optimize>
     
    3836    <StartupObject />
    3937  </PropertyGroup>
    40   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
    41     <PlatformTarget>AnyCPU</PlatformTarget>
    42     <OutputPath>bin\Debug\</OutputPath>
    43     <DefineConstants>DEBUG;TRACE</DefineConstants>
    44   </PropertyGroup>
    45   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
    46     <PlatformTarget>AnyCPU</PlatformTarget>
    47     <OutputPath>bin\Release\</OutputPath>
    48   </PropertyGroup>
    4938  <PropertyGroup>
    5039    <SignAssembly>true</SignAssembly>
     
    5342    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    5443  </PropertyGroup>
     44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     45    <PlatformTarget>x86</PlatformTarget>
     46    <OutputPath>bin\x86\Debug\</OutputPath>
     47  </PropertyGroup>
     48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
     49    <PlatformTarget>x86</PlatformTarget>
     50    <OutputPath>bin\x86\Release\</OutputPath>
     51  </PropertyGroup>
    5552  <ItemGroup>
     53    <Reference Include="HeuristicLab.Common-3.3">
     54      <HintPath>..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Common-3.3.dll</HintPath>
     55    </Reference>
     56    <Reference Include="HeuristicLab.Core-3.3">
     57      <HintPath>..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath>
     58    </Reference>
    5659    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    5760      <HintPath>..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
     
    6972  </ItemGroup>
    7073  <ItemGroup>
     74    <Compile Include="HeuristicLabClientsHiveSlaveAppPlugin.cs" />
    7175    <Compile Include="HiveSlaveApplication.cs" />
    7276    <Compile Include="Properties\AssemblyInfo.cs" />
     
    7781    </EmbeddedResource>
    7882    <None Include="HeuristicLab.snk" />
     83    <None Include="HeuristicLabClientsHiveSlaveAppPlugin.cs.frame" />
    7984    <None Include="Properties\AssemblyInfo.cs.frame" />
    8085    <Compile Include="Properties\Resources.Designer.cs">
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.App/3.3/HiveSlaveApplication.cs

    r6703 r6704  
    2525using System.Windows.Forms;
    2626using HeuristicLab.PluginInfrastructure;
     27using HeuristicLab.Clients.Hive.SlaveCore.SlaveTrayIcon;
     28using HeuristicLab.Clients.Hive.SlaveCore.Views;
     29using System.Threading;
    2730
    2831namespace HeuristicLab.Clients.Hive.Slave.App {
    29   [Application("Hive Slave", "Runs the Hive Slave as a HeuristicLab application", false)]
    30   public class HiveSlaveApplication : ApplicationBase {
     32  [Application("Hive Slave", "Runs the Hive Slave as a HeuristicLab application")]
     33  internal class HiveSlaveApplication : ApplicationBase {
    3134
    3235    public override void Run() {
    33 
     36     
    3437           
    3538    }
Note: See TracChangeset for help on using the changeset viewer.