Changeset 11177
- Timestamp:
- 07/10/14 03:28:43 (10 years ago)
- 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 40 40 <Reference Include="System" /> 41 41 <Reference Include="System.Core" /> 42 <Reference Include="System.Drawing" /> 42 43 <Reference Include="System.Xml.Linq" /> 43 44 <Reference Include="System.Data.DataSetExtensions" /> … … 47 48 </ItemGroup> 48 49 <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" /> 49 55 <Compile Include="Plugin.cs" /> 50 56 <Compile Include="Properties\AssemblyInfo.cs" /> … … 56 62 </ItemGroup> 57 63 <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> 58 84 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 59 85 <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project> -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/Plugin.cs.frame
r11063 r11177 28 28 [Plugin("HeuristicLab.Optimization.Networks", "3.3.11.$WCREV$")] 29 29 [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")] 34 34 // [PluginDependency("HeuristicLab.Data", "3.3")] 35 35 // [PluginDependency("HeuristicLab.Parameters", "3.3")] 36 //[PluginDependency("HeuristicLab.Persistence", "3.3")]36 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 37 public class HeuristicLabOptimizationNetworksPlugin : PluginBase { 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.