- Timestamp:
- 07/18/10 22:16:04 (15 years ago)
- Location:
- branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs
r3011 r4042 369 369 //first check if pluginInfo already exists in the db 370 370 HivePluginInfoDto found = PluginInfoAdapter.GetByNameVersionBuilddate( 371 pluginInfo.Name, pluginInfo.Version , pluginInfo.BuildDate);371 pluginInfo.Name, pluginInfo.Version.ToString(), pluginInfo.BuildDate); 372 372 if (found != null) { 373 373 pluginInfo.Id = found.Id; -
branches/3.2/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/PluginInfoAdapter.cs
r3011 r4042 27 27 row.PluginId = pluginInfo.Id; 28 28 row.Name = pluginInfo.Name; 29 row.Version = pluginInfo.Version ;29 row.Version = pluginInfo.Version.ToString(); 30 30 row.BuildDate = pluginInfo.BuildDate; 31 31 … … 48 48 49 49 if (!row.IsVersionNull()) { 50 pluginInfo.Version = row.Version;50 pluginInfo.Version = new Version(row.Version); 51 51 } else { 52 52 pluginInfo.Version = null;
Note: See TracChangeset
for help on using the changeset viewer.