Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/18/10 22:16:04 (14 years ago)
Author:
kgrading
Message:

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/PluginInfoAdapter.cs

    r3011 r4042  
    2727        row.PluginId = pluginInfo.Id;
    2828        row.Name = pluginInfo.Name;
    29         row.Version = pluginInfo.Version;
     29        row.Version = pluginInfo.Version.ToString();
    3030        row.BuildDate = pluginInfo.BuildDate;
    3131
     
    4848
    4949        if (!row.IsVersionNull()) {
    50           pluginInfo.Version = row.Version;
     50          pluginInfo.Version = new Version(row.Version);
    5151        } else {
    5252          pluginInfo.Version = null;
Note: See TracChangeset for help on using the changeset viewer.