Free cookie consent management tool by TermsFeed Policy Generator

Changeset 118


Ignore:
Timestamp:
04/14/08 10:18:59 (16 years ago)
Author:
gkronber
Message:

fixed #100 by using an absolute path for the plugin-download location

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure.GUI/PluginSource.cs

    r91 r118  
    2727using System.Xml;
    2828using System.ComponentModel;
     29using System.Windows.Forms;
    2930
    3031namespace HeuristicLab.PluginInfrastructure.GUI {
     
    3334    private string url;
    3435    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;
    3637
    3738    private PluginSource(string url) {
     
    115116      return url;
    116117    }
    117 
    118118  }
    119119}
Note: See TracChangeset for help on using the changeset viewer.