Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/16/10 06:50:14 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on parameters, TSP and selection
Location:
trunk/sources/HeuristicLab.Routing.TSP.Views/3.3
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Routing.TSP.Views/3.3/HeuristicLab.Routing.TSP.Views-3.3.csproj

    r2796 r2805  
    3939      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    4040    </Reference>
     41    <Reference Include="System.Drawing" />
     42    <Reference Include="System.Windows.Forms" />
    4143    <Reference Include="System.Xml.Linq">
    4244      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    5052  <ItemGroup>
    5153    <Compile Include="HeuristicLabRoutingTSPViewsPlugin.cs" />
     54    <Compile Include="TSPView.cs">
     55      <SubType>UserControl</SubType>
     56    </Compile>
     57    <Compile Include="TSPView.Designer.cs">
     58      <DependentUpon>TSPView.cs</DependentUpon>
     59    </Compile>
    5260    <Compile Include="Properties\AssemblyInfo.cs" />
    5361  </ItemGroup>
     
    5866  </ItemGroup>
    5967  <ItemGroup>
     68    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
     69      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
     70      <Name>HeuristicLab.Collections-3.3</Name>
     71    </ProjectReference>
     72    <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj">
     73      <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project>
     74      <Name>HeuristicLab.Core.Views-3.3</Name>
     75    </ProjectReference>
     76    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
     77      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
     78      <Name>HeuristicLab.Core-3.3</Name>
     79    </ProjectReference>
     80    <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj">
     81      <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>
     82      <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name>
     83    </ProjectReference>
     84    <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj">
     85      <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project>
     86      <Name>HeuristicLab.MainForm-3.2</Name>
     87    </ProjectReference>
    6088    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
    6189      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
    6290      <Name>HeuristicLab.PluginInfrastructure</Name>
     91    </ProjectReference>
     92    <ProjectReference Include="..\..\HeuristicLab.Routing.TSP\3.3\HeuristicLab.Routing.TSP-3.3.csproj">
     93      <Project>{600287A3-8714-453E-B875-A05F3EB72315}</Project>
     94      <Name>HeuristicLab.Routing.TSP-3.3</Name>
    6395    </ProjectReference>
    6496  </ItemGroup>
  • trunk/sources/HeuristicLab.Routing.TSP.Views/3.3/HeuristicLabRoutingTSPViewsPlugin.cs.frame

    r2796 r2805  
    2828  [Plugin("HeuristicLab.Routing.TSP.Views", "3.3.0.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Routing.TSP.Views-3.3.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3031  [PluginDependency("HeuristicLab.Core", "3.3")]
    3132  [PluginDependency("HeuristicLab.Core.Views", "3.3")]
    32   [PluginDependency("HeuristicLab.Data", "3.3")]
    3333  [PluginDependency("HeuristicLab.MainForm", "3.2")]
    3434  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.2")]
    35   [PluginDependency("HeuristicLab.Operators", "3.3")]
    36   [PluginDependency("HeuristicLab.Permutation", "3.3")]
    37   [PluginDependency("HeuristicLab.Persistence", "3.3")]
     35  [PluginDependency("HeuristicLab.Routing.TSP", "3.3")]
    3836  public class HeuristicLabRoutingTSPViewsPlugin : PluginBase {
    3937  }
Note: See TracChangeset for help on using the changeset viewer.