Changeset 118
- Timestamp:
- 04/14/08 10:18:59 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure.GUI/PluginSource.cs
r91 r118 27 27 using System.Xml; 28 28 using System.ComponentModel; 29 using System.Windows.Forms; 29 30 30 31 namespace HeuristicLab.PluginInfrastructure.GUI { … … 33 34 private string url; 34 35 private WebClient client; 35 private string cacheDir = HeuristicLab.PluginInfrastructure.GUI.Properties.Settings.Default.CacheDir;36 private string cacheDir = Application.StartupPath + "/" + HeuristicLab.PluginInfrastructure.GUI.Properties.Settings.Default.CacheDir; 36 37 37 38 private PluginSource(string url) { … … 115 116 return url; 116 117 } 117 118 118 } 119 119 }
Note: See TracChangeset
for help on using the changeset viewer.