Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11177 for branches


Ignore:
Timestamp:
07/10/14 03:28:43 (10 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

Location:
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/HeuristicLab.Optimization.Networks-3.3.csproj

    r11063 r11177  
    4040    <Reference Include="System" />
    4141    <Reference Include="System.Core" />
     42    <Reference Include="System.Drawing" />
    4243    <Reference Include="System.Xml.Linq" />
    4344    <Reference Include="System.Data.DataSetExtensions" />
     
    4748  </ItemGroup>
    4849  <ItemGroup>
     50    <Compile Include="Entity.cs" />
     51    <Compile Include="IEntity.cs" />
     52    <Compile Include="IPort.cs" />
     53    <Compile Include="PortCollection.cs" />
     54    <Compile Include="Port.cs" />
    4955    <Compile Include="Plugin.cs" />
    5056    <Compile Include="Properties\AssemblyInfo.cs" />
     
    5662  </ItemGroup>
    5763  <ItemGroup>
     64    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
     65      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
     66      <Name>HeuristicLab.Collections-3.3</Name>
     67    </ProjectReference>
     68    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
     69      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
     70      <Name>HeuristicLab.Common.Resources-3.3</Name>
     71    </ProjectReference>
     72    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
     73      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
     74      <Name>HeuristicLab.Common-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.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
     81      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
     82      <Name>HeuristicLab.Persistence-3.3</Name>
     83    </ProjectReference>
    5884    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
    5985      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/Plugin.cs.frame

    r11063 r11177  
    2828  [Plugin("HeuristicLab.Optimization.Networks", "3.3.11.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Optimization.Networks-3.3.dll", PluginFileType.Assembly)]
    30 //  [PluginDependency("HeuristicLab.Collections", "3.3")]
    31 //  [PluginDependency("HeuristicLab.Common", "3.3")]
    32 //  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
    33 //  [PluginDependency("HeuristicLab.Core", "3.3")]
     30  [PluginDependency("HeuristicLab.Collections", "3.3")]
     31  [PluginDependency("HeuristicLab.Common", "3.3")]
     32  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
     33  [PluginDependency("HeuristicLab.Core", "3.3")]
    3434//  [PluginDependency("HeuristicLab.Data", "3.3")]
    3535//  [PluginDependency("HeuristicLab.Parameters", "3.3")]
    36 //  [PluginDependency("HeuristicLab.Persistence", "3.3")]
     36  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    3737  public class HeuristicLabOptimizationNetworksPlugin : PluginBase {
    3838  }
Note: See TracChangeset for help on using the changeset viewer.