Changeset 16997
- Timestamp:
- 05/29/19 12:28:39 (5 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Core.Views/3.3/Clipboard.cs
r16992 r16997 24 24 using System.Collections.Generic; 25 25 using System.IO; 26 using System.IO.Compression;27 26 using System.Linq; 28 27 using System.Threading; … … 31 30 using HeuristicLab.Common; 32 31 using HeuristicLab.MainForm; 33 using HeuristicLab.Persistence.Default.Xml;34 32 using HeuristicLab.PluginInfrastructure; 35 33 -
trunk/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r16658 r16997 375 375 <Private>False</Private> 376 376 </ProjectReference> 377 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">378 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>379 <Name>HeuristicLab.Persistence-3.3</Name>380 <Private>False</Private>381 </ProjectReference>382 377 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 383 378 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
trunk/HeuristicLab.Core.Views/3.3/Plugin.cs.frame
r16658 r16997 35 35 [PluginDependency("HeuristicLab.MainForm", "3.3")] 36 36 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 37 [PluginDependency("HeuristicLab.Persistence", "3.3")]38 37 public class HeuristicLabCoreViewsPlugin : PluginBase { 39 38 } -
trunk/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r16658 r16997 312 312 <Private>False</Private> 313 313 </ProjectReference> 314 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">315 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>316 <Name>HeuristicLab.Persistence-3.3</Name>317 <Private>False</Private>318 </ProjectReference>319 314 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 320 315 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
trunk/HeuristicLab.Optimizer/3.3/Plugin.cs.frame
r16658 r16997 43 43 [PluginDependency("HeuristicLab.Optimization", "3.3")] 44 44 [PluginDependency("HeuristicLab.Parameters", "3.3")] 45 [PluginDependency("HeuristicLab.Persistence", "3.3")]46 45 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 47 46 public class HeuristicLabOptimizerPlugin : PluginBase { -
trunk/HeuristicLab.Tests/HeuristicLab.Persistence.Attic/PersistenceConsistencyChecks.cs
r16908 r16997 18 18 var dict = new Dictionary<Guid, string>(); 19 19 var duplicates = new Dictionary<string, string>(); 20 //get all non-generic and instantiable classes which implement IContentView21 20 foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(object))) { 22 21 var attr = StorableTypeAttribute.GetStorableTypeAttribute(type);
Note: See TracChangeset
for help on using the changeset viewer.