- Timestamp:
- 06/11/19 20:59:44 (5 years ago)
- Location:
- branches/2994-AutoDiffForIntervals
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals
- Property svn:mergeinfo changed
/trunk merged: 16944-16945,16978-16983,16992,16997
- Property svn:mergeinfo changed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Core.Views
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Core.Views (added) merged: 16992,16997
- Property svn:mergeinfo changed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Core.Views/3.3/Clipboard.cs
r16565 r17005 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 … … 157 155 foreach (string filename in items) { 158 156 try { 159 var ser = new ProtoBufSerializer(); 160 T item = (T)ser.Deserialize(filename); 157 T item = (T)ContentManager.Load(filename); 161 158 OnItemLoaded(item, progressBar.Maximum / items.Length); 162 } catch (Exception) { 163 try { 164 // try old format if protobuf deserialization fails 165 T item = XmlParser.Deserialize<T>(filename); 166 OnItemLoaded(item, progressBar.Maximum / items.Length); 167 } catch (Exception) { } 159 } catch(Exception) { 160 // ignore if loading a clipboad item fails. 168 161 } 169 162 } -
branches/2994-AutoDiffForIntervals/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r16658 r17005 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> -
branches/2994-AutoDiffForIntervals/HeuristicLab.Core.Views/3.3/Plugin.cs.frame
r16658 r17005 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 }
Note: See TracChangeset
for help on using the changeset viewer.