Free cookie consent management tool by TermsFeed Policy Generator

Changeset 377


Ignore:
Timestamp:
07/10/08 11:06:37 (16 years ago)
Author:
gkronber
Message:

renamed Plugin CEDMA.Console -> CEDMA.Core

Location:
trunk/sources
Files:
19 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Core/Agent.cs

    r375 r377  
    2828using HeuristicLab.CEDMA.DB.Interfaces;
    2929
    30 namespace HeuristicLab.CEDMA.Console {
     30namespace HeuristicLab.CEDMA.Core {
    3131  public class Agent : ItemBase, IAgent {
    3232    public IDatabase Database { get; set; }
     
    4545    }
    4646
    47     public Agent(IDatabase database, long id) : this() {
     47    public Agent(IDatabase database, long id)
     48      : this() {
    4849      Database = database;
    4950      Id = id;
  • trunk/sources/HeuristicLab.CEDMA.Core/AgentList.cs

    r375 r377  
    3131using System.IO;
    3232
    33 namespace HeuristicLab.CEDMA.Console {
     33namespace HeuristicLab.CEDMA.Core {
    3434  public class AgentList : ItemBase, IAgentList {
    3535    private string serverUri;
  • trunk/sources/HeuristicLab.CEDMA.Core/AgentListView.Designer.cs

    r357 r377  
    2323using System.Windows.Forms;
    2424
    25 namespace HeuristicLab.CEDMA.Console {
     25namespace HeuristicLab.CEDMA.Core {
    2626  partial class AgentListView {
    2727    /// <summary>
     
    3535    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3636    protected override void Dispose(bool disposing) {
    37       if (disposing && (components != null)) {
     37      if(disposing && (components != null)) {
    3838        components.Dispose();
    3939      }
  • trunk/sources/HeuristicLab.CEDMA.Core/AgentListView.cs

    r372 r377  
    2929using HeuristicLab.Core;
    3030
    31 namespace HeuristicLab.CEDMA.Console {
     31namespace HeuristicLab.CEDMA.Core {
    3232  public partial class AgentListView : ViewBase {
    3333    private ChooseItemDialog chooseItemDialog;
  • trunk/sources/HeuristicLab.CEDMA.Core/AgentView.Designer.cs

    r372 r377  
    2020#endregion
    2121
    22 namespace HeuristicLab.CEDMA.Console {
     22namespace HeuristicLab.CEDMA.Core {
    2323  partial class AgentView {
    2424    /// <summary>
     
    3232    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3333    protected override void Dispose(bool disposing) {
    34       if (disposing && (components != null)) {
     34      if(disposing && (components != null)) {
    3535        components.Dispose();
    3636      }
  • trunk/sources/HeuristicLab.CEDMA.Core/AgentView.cs

    r375 r377  
    3030using HeuristicLab.CEDMA.DB.Interfaces;
    3131
    32 namespace HeuristicLab.CEDMA.Console {
     32namespace HeuristicLab.CEDMA.Core {
    3333  public partial class AgentView : ViewBase {
    3434    public IAgent Agent {
  • trunk/sources/HeuristicLab.CEDMA.Core/Console.cs

    r372 r377  
    3030using HeuristicLab.CEDMA.DB.Interfaces;
    3131
    32 namespace HeuristicLab.CEDMA.Console {
     32namespace HeuristicLab.CEDMA.Core {
    3333  public class Console : ItemBase, IEditable {
    3434    private AgentList agentList;
  • trunk/sources/HeuristicLab.CEDMA.Core/ConsoleEditor.cs

    r372 r377  
    2828using System.ServiceModel;
    2929
    30 namespace HeuristicLab.CEDMA.Console {
     30namespace HeuristicLab.CEDMA.Core {
    3131  class ConsoleEditor : EditorBase {
    3232    private System.Windows.Forms.TextBox uriTextBox;
  • trunk/sources/HeuristicLab.CEDMA.Core/DbPersistenceManager.cs

    r375 r377  
    2828using HeuristicLab.Core;
    2929
    30 namespace HeuristicLab.CEDMA.Console {
     30namespace HeuristicLab.CEDMA.Core {
    3131  public static class DbPersistenceManager {
    3232    public static IStorable Restore(byte[] serializedStorable) {
  • trunk/sources/HeuristicLab.CEDMA.Core/HeuristicLab.CEDMA.Core.csproj

    r376 r377  
    66    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    8     <ProjectGuid>{F8880599-F224-4EC7-9288-5C4A6853E7BE}</ProjectGuid>
     8    <ProjectGuid>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</ProjectGuid>
    99    <OutputType>Library</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
    11     <RootNamespace>HeuristicLab.CEDMA.Console</RootNamespace>
    12     <AssemblyName>HeuristicLab.CEDMA.Console</AssemblyName>
     11    <RootNamespace>HeuristicLab.CEDMA.Core</RootNamespace>
     12    <AssemblyName>HeuristicLab.CEDMA.Core</AssemblyName>
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     
    6767    </Compile>
    6868    <Compile Include="DbPersistenceManager.cs" />
    69     <Compile Include="HeuristicLabCedmaConsolePlugin.cs" />
     69    <Compile Include="HeuristicLabCedmaCorePlugin.cs" />
    7070    <Compile Include="IAgent.cs" />
    7171    <Compile Include="IAgentList.cs" />
  • trunk/sources/HeuristicLab.CEDMA.Core/HeuristicLabCedmaCorePlugin.cs

    r376 r377  
    2525using HeuristicLab.PluginInfrastructure;
    2626
    27 namespace HeuristicLab.CEDMA.Console {
    28   [ClassInfo(Name = "HeuristicLab.CEDMA.Console")]
    29   [PluginFile(Filename = "HeuristicLab.CEDMA.Console.dll", Filetype = PluginFileType.Assembly)]
     27namespace HeuristicLab.CEDMA.Core {
     28  [ClassInfo(Name = "HeuristicLab.CEDMA.Core")]
     29  [PluginFile(Filename = "HeuristicLab.CEDMA.Core.dll", Filetype = PluginFileType.Assembly)]
    3030  [Dependency(Dependency = "HeuristicLab.Core")]
    3131  [Dependency(Dependency = "HeuristicLab.CEDMA.DB.Interfaces")]
    3232  [Dependency(Dependency = "HeuristicLab.CEDMA.Server")]
    33   public class HeuristicLabCedmaConsolePlugin : PluginBase {
     33  public class HeuristicLabCedmaCorePlugin : PluginBase {
    3434  }
    3535}
  • trunk/sources/HeuristicLab.CEDMA.Core/IAgent.cs

    r375 r377  
    2727using HeuristicLab.CEDMA.DB.Interfaces;
    2828
    29 namespace HeuristicLab.CEDMA.Console {
     29namespace HeuristicLab.CEDMA.Core {
    3030  public interface IAgent : IDatabaseItem {
    3131    string Name { get; }
  • trunk/sources/HeuristicLab.CEDMA.Core/IAgentList.cs

    r372 r377  
    2626using HeuristicLab.Core;
    2727
    28 namespace HeuristicLab.CEDMA.Console {
     28namespace HeuristicLab.CEDMA.Core {
    2929  public interface IAgentList : IItem, IEnumerable<IAgent> {
    3030    void CreateAgent();
  • trunk/sources/HeuristicLab.CEDMA.Core/IDatabaseItem.cs

    r372 r377  
    2727using HeuristicLab.CEDMA.DB.Interfaces;
    2828
    29 namespace HeuristicLab.CEDMA.Console {
     29namespace HeuristicLab.CEDMA.Core {
    3030  public interface IDatabaseItem : IItem {
    3131    IDatabase Database { get; set; }
  • trunk/sources/HeuristicLab.CEDMA.Operators/HeuristicLab.CEDMA.Operators.csproj

    r375 r377  
    6666  </ItemGroup>
    6767  <ItemGroup>
    68     <ProjectReference Include="..\HeuristicLab.CEDMA.Console\HeuristicLab.CEDMA.Console.csproj">
    69       <Project>{F8880599-F224-4EC7-9288-5C4A6853E7BE}</Project>
    70       <Name>HeuristicLab.CEDMA.Console</Name>
     68    <ProjectReference Include="..\HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj">
     69      <Project>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</Project>
     70      <Name>HeuristicLab.CEDMA.Core</Name>
    7171    </ProjectReference>
    7272    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
  • trunk/sources/HeuristicLab.CEDMA.Operators/OnGridProcessor.cs

    r375 r377  
    2828using HeuristicLab.CEDMA.DB.Interfaces;
    2929using System.ServiceModel;
    30 using HeuristicLab.CEDMA.Console;
     30using HeuristicLab.CEDMA.Core;
    3131
    3232namespace HeuristicLab.CEDMA.Operators {
  • trunk/sources/HeuristicLab.CEDMA.Server/AgentScheduler.cs

    r375 r377  
    2828using HeuristicLab.Core;
    2929using System.Threading;
    30 using HeuristicLab.CEDMA.Console;
     30using HeuristicLab.CEDMA.Core;
    3131
    3232namespace HeuristicLab.CEDMA.Server {
  • trunk/sources/HeuristicLab.CEDMA.Server/HeuristicLab.CEDMA.Server.csproj

    r375 r377  
    7373  </ItemGroup>
    7474  <ItemGroup>
    75     <ProjectReference Include="..\HeuristicLab.CEDMA.Console\HeuristicLab.CEDMA.Console.csproj">
    76       <Project>{F8880599-F224-4EC7-9288-5C4A6853E7BE}</Project>
    77       <Name>HeuristicLab.CEDMA.Console</Name>
     75    <ProjectReference Include="..\HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj">
     76      <Project>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</Project>
     77      <Name>HeuristicLab.CEDMA.Core</Name>
    7878    </ProjectReference>
    7979    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
  • trunk/sources/HeuristicLab.CEDMA.Server/RunScheduler.cs

    r375 r377  
    2828using HeuristicLab.Core;
    2929using System.Threading;
    30 using HeuristicLab.CEDMA.Console;
     30using HeuristicLab.CEDMA.Core;
    3131using HeuristicLab.Grid;
    3232
  • trunk/sources/HeuristicLab.sln

    r352 r377  
    7878Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.CEDMA.DB", "HeuristicLab.CEDMA.DB\HeuristicLab.CEDMA.DB.csproj", "{B3D6D8D9-2B1F-47EC-9C73-77FAECF87310}"
    7979EndProject
    80 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.CEDMA.Console", "HeuristicLab.CEDMA.Console\HeuristicLab.CEDMA.Console.csproj", "{F8880599-F224-4EC7-9288-5C4A6853E7BE}"
    81 EndProject
    8280Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.CEDMA.Operators", "HeuristicLab.CEDMA.Operators\HeuristicLab.CEDMA.Operators.csproj", "{6BC692D4-8843-4945-ACE4-5B41ED55476A}"
    8381EndProject
    8482Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.CEDMA.Server", "HeuristicLab.CEDMA.Server\HeuristicLab.CEDMA.Server.csproj", "{F05D261A-4F7D-46C9-AB9C-21FD4566D719}"
     83EndProject
     84Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.CEDMA.Core", "HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj", "{C27DDF6C-84DF-45EF-B82F-57A28DD51166}"
    8585EndProject
    8686Global
     
    230230    {B3D6D8D9-2B1F-47EC-9C73-77FAECF87310}.Release|Any CPU.ActiveCfg = Release|Any CPU
    231231    {B3D6D8D9-2B1F-47EC-9C73-77FAECF87310}.Release|Any CPU.Build.0 = Release|Any CPU
    232     {F8880599-F224-4EC7-9288-5C4A6853E7BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    233     {F8880599-F224-4EC7-9288-5C4A6853E7BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
    234     {F8880599-F224-4EC7-9288-5C4A6853E7BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
    235     {F8880599-F224-4EC7-9288-5C4A6853E7BE}.Release|Any CPU.Build.0 = Release|Any CPU
    236232    {6BC692D4-8843-4945-ACE4-5B41ED55476A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    237233    {6BC692D4-8843-4945-ACE4-5B41ED55476A}.Debug|Any CPU.Build.0 = Debug|Any CPU
     
    242238    {F05D261A-4F7D-46C9-AB9C-21FD4566D719}.Release|Any CPU.ActiveCfg = Release|Any CPU
    243239    {F05D261A-4F7D-46C9-AB9C-21FD4566D719}.Release|Any CPU.Build.0 = Release|Any CPU
     240    {C27DDF6C-84DF-45EF-B82F-57A28DD51166}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     241    {C27DDF6C-84DF-45EF-B82F-57A28DD51166}.Debug|Any CPU.Build.0 = Debug|Any CPU
     242    {C27DDF6C-84DF-45EF-B82F-57A28DD51166}.Release|Any CPU.ActiveCfg = Release|Any CPU
     243    {C27DDF6C-84DF-45EF-B82F-57A28DD51166}.Release|Any CPU.Build.0 = Release|Any CPU
    244244  EndGlobalSection
    245245  GlobalSection(SolutionProperties) = preSolution
  • trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r360 r377  
    1010copy "..\..\..\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking License.txt" .\plugins
    1111copy "..\..\..\HeuristicLab.BitVector\bin\%1\HeuristicLab.BitVector.dll" .\plugins
    12 copy "..\..\..\HeuristicLab.CEDMA.Console\bin\%1\HeuristicLab.CEDMA.Console.dll" .\plugins
     12copy "..\..\..\HeuristicLab.CEDMA.Core\bin\%1\HeuristicLab.CEDMA.Core.dll" .\plugins
    1313copy "..\..\..\HeuristicLab.CEDMA.DB\bin\%1\HeuristicLab.CEDMA.DB.dll" .\plugins
    1414copy "..\..\..\HeuristicLab.CEDMA.DB.Interfaces\bin\%1\HeuristicLab.CEDMA.DB.Interfaces.dll" .\plugins
Note: See TracChangeset for help on using the changeset viewer.