Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4387


Ignore:
Timestamp:
09/14/10 00:18:12 (14 years ago)
Author:
swagner
Message:

Implemented ClientFactory and username / password management (#1187)

Location:
trunk/sources
Files:
7 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Common/3.3/HeuristicLab.Clients.Common-3.3.csproj

    r4386 r4387  
    105105    <Reference Include="System" />
    106106    <Reference Include="System.Core" />
     107    <Reference Include="System.Drawing" />
     108    <Reference Include="System.ServiceModel" />
     109    <Reference Include="System.Windows.Forms" />
    107110    <Reference Include="System.Xml.Linq" />
    108111    <Reference Include="System.Data.DataSetExtensions" />
    109     <Reference Include="Microsoft.CSharp" />
    110112    <Reference Include="System.Data" />
    111113    <Reference Include="System.Xml" />
    112114  </ItemGroup>
    113115  <ItemGroup>
     116    <Compile Include="ClientFactory.cs" />
    114117    <Compile Include="HeuristicLabClientsCommonPlugin.cs" />
     118    <Compile Include="PasswordDialog.cs">
     119      <SubType>Form</SubType>
     120    </Compile>
     121    <Compile Include="PasswordDialog.Designer.cs">
     122      <DependentUpon>PasswordDialog.cs</DependentUpon>
     123    </Compile>
    115124    <Compile Include="Properties\AssemblyInfo.cs" />
     125    <Compile Include="Properties\Settings.Designer.cs">
     126      <AutoGen>True</AutoGen>
     127      <DesignTimeSharedInput>True</DesignTimeSharedInput>
     128      <DependentUpon>Settings.settings</DependentUpon>
     129    </Compile>
     130    <None Include="app.config" />
    116131    <None Include="Properties\AssemblyInfo.frame" />
     132    <None Include="Properties\Settings.settings">
     133      <Generator>SettingsSingleFileGenerator</Generator>
     134      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
     135    </None>
    117136  </ItemGroup>
    118137  <ItemGroup>
  • trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj

    r4104 r4387  
    121121    <Compile Include="MenuItems\AboutMenuItem.cs" />
    122122    <Compile Include="MenuItems\ConvertIntoUserDefinedAlgorithmMenuItem.cs" />
     123    <Compile Include="MenuItems\UsernamePasswordMenuItem.cs" />
    123124    <Compile Include="MenuItems\CreateExperimentMenuItem.cs" />
    124125    <Compile Include="MenuItems\CopyToClipboardMenuItem.cs" />
     
    174175  </ItemGroup>
    175176  <ItemGroup>
     177    <ProjectReference Include="..\..\HeuristicLab.Clients.Common\3.3\HeuristicLab.Clients.Common-3.3.csproj">
     178      <Project>{730A9104-D4D1-4360-966B-E49B7571DDA3}</Project>
     179      <Name>HeuristicLab.Clients.Common-3.3</Name>
     180    </ProjectReference>
    176181    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
    177182      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
  • trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerPlugin.cs.frame

    r4104 r4387  
    2727  [PluginFile("HeuristicLab.Optimizer-3.3.dll", PluginFileType.Assembly)]
    2828  [PluginDependency("HeuristicLab.Persistence", "3.3")]
     29  [PluginDependency("HeuristicLab.Clients.Common", "3.3")]
    2930  [PluginDependency("HeuristicLab.Common", "3.3")]
    3031  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
  • trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/AboutMenuItem.cs

    r4068 r4387  
    3030
    3131    public override string Name {
    32       get { return "&About"; }
     32      get { return "&About..."; }
    3333    }
    3434    public override IEnumerable<string> Structure {
  • trunk/sources/HeuristicLab/3.3/MergeConfigs.cmd

    r3837 r4387  
    11ConfigMerger "%SolutionDir%\HeuristicLab.PluginInfrastructure\3.3\%Outdir%\HeuristicLab.PluginInfrastructure-3.3.dll.config" "HeuristicLab 3.3.exe.config"
     2ConfigMerger "%SolutionDir%\HeuristicLab.Clients.Common\3.3\%Outdir%\HeuristicLab.Clients.Common-3.3.dll.config" "HeuristicLab 3.3.exe.config"
    23ConfigMerger "%SolutionDir%\HeuristicLab.Optimizer\3.3\%Outdir%\HeuristicLab.Optimizer-3.3.dll.config" "HeuristicLab 3.3.exe.config"
    34ConfigMerger "%SolutionDir%\HeuristicLab.Persistence\3.3\%Outdir%\HeuristicLab.Persistence-3.3.dll.config" "HeuristicLab 3.3.exe.config"
Note: See TracChangeset for help on using the changeset viewer.