Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/08/19 00:23:12 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16584, 16585,16594,16595, 16625, 16658, 16659, 16672, 16707, 16729, 16792, 16796, 16797, 16799, 16819, 16906, 16907, 16908, 16933, 16945, 16992, 16994, 16995, 16996, 16997, 17014, 17015, 17017, 17020, 17021, 17022, 17023, 17024, 17029, 17086, 17087, 17088, 17089 into stable.

Location:
stable
Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.DataAnalysis.Views

  • stable/HeuristicLab.Problems.DataAnalysis.Views/3.4

  • stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r17097 r17105  
    103103      <Private>False</Private>
    104104    </Reference>
    105     <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
    106       <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
    107     </Reference>
    108     <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    109       <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath>
    110     </Reference>
    111105    <Reference Include="System" />
    112106    <Reference Include="System.Core">
     
    114108    </Reference>
    115109    <Reference Include="System.Drawing" />
    116     <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    117       <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath>
    118     </Reference>
    119110    <Reference Include="System.Windows.Forms" />
    120111    <Reference Include="System.Windows.Forms.DataVisualization" />
     
    476467    </Compile>
    477468    <None Include="HeuristicLab.snk" />
    478     <None Include="packages.config" />
    479469    <None Include="Plugin.cs.frame" />
    480470    <None Include="Properties\AssemblyInfo.cs.frame" />
     
    560550      <Project>{AE5B1CE5-9862-4D6F-A700-D72CD9AEA295}</Project>
    561551      <Name>HeuristicLab.Parameters.Views-3.3</Name>
    562       <Private>False</Private>
    563     </ProjectReference>
    564     <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
    565       <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
    566       <Name>HeuristicLab.Persistence-3.3</Name>
    567552      <Private>False</Private>
    568553    </ProjectReference>
     
    615600    </EmbeddedResource>
    616601  </ItemGroup>
     602  <ItemGroup>
     603    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     604      <SpecificVersion>False</SpecificVersion>
     605      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
     606      <Private>False</Private>
     607    </Reference>
     608  </ItemGroup>
    617609  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    618610  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  • stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Plugin.cs.frame

    r17097 r17105  
    3131  [PluginDependency("HeuristicLab.Algorithms.DataAnalysis", "3.4")]
    3232  [PluginDependency("HeuristicLab.Analysis", "3.3")]
     33  [PluginDependency("HeuristicLab.Attic", "1.0")]
    3334  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3435  [PluginDependency("HeuristicLab.Common", "3.3")]
     
    4344  [PluginDependency("HeuristicLab.Optimization.Views","3.3")]
    4445  [PluginDependency("HeuristicLab.Optimizer", "3.3")]
    45   [PluginDependency("HeuristicLab.Persistence", "3.3")]
    4646  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")]
    4747  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic.Regression", "3.4")]
  • stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.cs

    r17097 r17105  
    2525using System.Linq;
    2626using System.Windows.Forms;
     27using HEAL.Attic;
    2728using HeuristicLab.Core;
    2829using HeuristicLab.Core.Views;
    2930using HeuristicLab.MainForm;
    3031using HeuristicLab.Optimization;
    31 using HeuristicLab.Persistence.Default.Xml;
    3232using HeuristicLab.PluginInfrastructure;
    3333
     
    126126      if (loadProblemDataFileDialog.ShowDialog(this) != DialogResult.OK) return;
    127127      try {
    128         object hlFile = XmlParser.Deserialize(loadProblemDataFileDialog.FileName);
     128        var ser = new ProtoBufSerializer();
     129        object hlFile = ser.Deserialize(loadProblemDataFileDialog.FileName);
    129130
    130131        IDataAnalysisProblemData problemData = null;
     
    145146          solution.Name += " with loaded problemData";
    146147        MainFormManager.MainForm.ShowContent(solution);
    147       }
    148       catch (InvalidOperationException invalidOperationException) {
     148      } catch (InvalidOperationException invalidOperationException) {
    149149        ErrorHandling.ShowErrorDialog(this, invalidOperationException);
    150       }
    151       catch (ArgumentException argumentException) {
     150      } catch (ArgumentException argumentException) {
    152151        ErrorHandling.ShowErrorDialog(this, argumentException);
    153152      }
     
    235234        Content.Filename = string.Empty;
    236235        MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().UpdateTitle();
    237       }
    238       catch (InvalidOperationException invalidOperationException) {
     236      } catch (InvalidOperationException invalidOperationException) {
    239237        ErrorHandling.ShowErrorDialog(this, invalidOperationException);
    240       }
    241       catch (ArgumentException argumentException) {
     238      } catch (ArgumentException argumentException) {
    242239        ErrorHandling.ShowErrorDialog(this, argumentException);
    243240      }
Note: See TracChangeset for help on using the changeset viewer.