Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/10 01:38:51 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • renamed HeuristicLab.Routing.TSP to HeuristicLab.Problems.TSP
Location:
trunk/sources/HeuristicLab.Problems.TSP.Views
Files:
1 added
2 deleted
2 edited
2 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3

    • Property svn:ignore
      •  

        old new  
        22obj
        33*.user
        4 HeuristicLabRoutingTSPViewsPlugin.cs
         4HeuristicLabProblemsTSPViewsPlugin.cs
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/HeuristicLab.Problems.TSP.Views-3.3.csproj

    r2882 r2883  
    99    <OutputType>Library</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
    11     <RootNamespace>HeuristicLab.Routing.TSP.Views</RootNamespace>
    12     <AssemblyName>HeuristicLab.Routing.TSP.Views-3.3</AssemblyName>
     11    <RootNamespace>HeuristicLab.Problems.TSP.Views</RootNamespace>
     12    <AssemblyName>HeuristicLab.Problems.TSP.Views-3.3</AssemblyName>
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     
    3232    <ErrorReport>prompt</ErrorReport>
    3333    <WarningLevel>4</WarningLevel>
    34     <DocumentationFile>bin\Release\HeuristicLab.Routing.TSP.Views-3.3.XML</DocumentationFile>
     34    <DocumentationFile>bin\Release\HeuristicLab.Problems.TSP.Views-3.3.xml</DocumentationFile>
    3535  </PropertyGroup>
    3636  <ItemGroup>
     
    5151  </ItemGroup>
    5252  <ItemGroup>
    53     <Compile Include="HeuristicLabRoutingTSPViewsPlugin.cs" />
     53    <Compile Include="HeuristicLabProblemsTSPViewsPlugin.cs" />
    5454    <Compile Include="TSPView.cs">
    5555      <SubType>UserControl</SubType>
     
    6262  <ItemGroup>
    6363    <None Include="HeuristicLab.snk" />
    64     <None Include="HeuristicLabRoutingTSPViewsPlugin.cs.frame" />
     64    <None Include="HeuristicLabProblemsTSPViewsPlugin.cs.frame" />
    6565    <None Include="Properties\AssemblyInfo.frame" />
    6666  </ItemGroup>
     
    9898      <Name>HeuristicLab.PluginInfrastructure</Name>
    9999    </ProjectReference>
    100     <ProjectReference Include="..\..\HeuristicLab.Routing.TSP\3.3\HeuristicLab.Routing.TSP-3.3.csproj">
     100    <ProjectReference Include="..\..\HeuristicLab.Problems.TSP\3.3\HeuristicLab.Problems.TSP-3.3.csproj">
    101101      <Project>{600287A3-8714-453E-B875-A05F3EB72315}</Project>
    102102      <Name>HeuristicLab.Routing.TSP-3.3</Name>
     
    118118
    119119call PreBuildEvent.cmd
    120 SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabRoutingTSPViewsPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabRoutingTSPViewsPlugin.cs"</PreBuildEvent>
     120SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabProblemsTSPViewsPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabProblemsTSPViewsPlugin.cs"</PreBuildEvent>
    121121  </PropertyGroup>
    122122</Project>
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/HeuristicLabProblemsTSPViewsPlugin.cs.frame

    r2882 r2883  
    2222using HeuristicLab.PluginInfrastructure;
    2323
    24 namespace HeuristicLab.Routing.TSP.Views {
     24namespace HeuristicLab.Problems.TSP.Views {
    2525  /// <summary>
    26   /// Plugin class for HeuristicLab.Routing.TSP.Views plugin
     26  /// Plugin class for HeuristicLab.Problems.TSP.Views plugin
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Routing.TSP.Views", "3.3.0.$WCREV$")]
    29   [PluginFile("HeuristicLab.Routing.TSP.Views-3.3.dll", PluginFileType.Assembly)]
     28  [Plugin("HeuristicLab.Problems.TSP.Views", "3.3.0.$WCREV$")]
     29  [PluginFile("HeuristicLab.Problems.TSP.Views-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3131  [PluginDependency("HeuristicLab.Core", "3.3")]
     
    3535  [PluginDependency("HeuristicLab.Optimization", "3.3")]
    3636  [PluginDependency("HeuristicLab.Optimization.Views", "3.3")]
    37   [PluginDependency("HeuristicLab.Routing.TSP", "3.3")]
    38   public class HeuristicLabRoutingTSPViewsPlugin : PluginBase {
     37  [PluginDependency("HeuristicLab.Problems.TSP", "3.3")]
     38  public class HeuristicLabProblemsTSPViewsPlugin : PluginBase {
    3939  }
    4040}
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/TSPView.Designer.cs

    r2882 r2883  
    2020#endregion
    2121
    22 namespace HeuristicLab.Routing.TSP.Views {
     22namespace HeuristicLab.Problems.TSP.Views {
    2323  partial class TSPView {
    2424    /// <summary>
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/TSPView.cs

    r2834 r2883  
    2626using HeuristicLab.Optimization.Views;
    2727
    28 namespace HeuristicLab.Routing.TSP.Views {
     28namespace HeuristicLab.Problems.TSP.Views {
    2929  /// <summary>
    3030  /// The base class for visual representations of items.
Note: See TracChangeset for help on using the changeset viewer.