- Timestamp:
- 04/17/13 10:49:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Clients.Hive.Slave/3.3/Manager/PluginManager.cs
r9363 r9365 61 61 if (!Path.IsPathRooted(CoreProperties.Settings.Default.PluginCacheDir)) { 62 62 CoreProperties.Settings.Default.PluginCacheDir = Path.Combine(Path.GetTempPath(), CoreProperties.Settings.Default.PluginCacheDir); 63 CoreProperties.Settings.Default.Save(); 63 try { 64 CoreProperties.Settings.Default.Save(); 65 } 66 catch (Exception ex) { 67 log.LogException(ex); 68 } 64 69 } 65 70 66 71 if (!Path.IsPathRooted(CoreProperties.Settings.Default.PluginTempBaseDir)) { 67 72 CoreProperties.Settings.Default.PluginTempBaseDir = Path.Combine(Path.GetTempPath(), CoreProperties.Settings.Default.PluginTempBaseDir); 68 CoreProperties.Settings.Default.Save(); 73 try { 74 CoreProperties.Settings.Default.Save(); 75 } 76 catch (Exception ex) { 77 log.LogException(ex); 78 } 69 79 } 70 80 }
Note: See TracChangeset
for help on using the changeset viewer.