Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzhang committed Jul 6, 2018
1 parent c87c568 commit fbbbff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimplePolicy/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal class Settings

static Settings()
{
string path = Path.Combine(Assembly.GetExecutingAssembly().GetName().Name, "config.json");
string path = Path.Combine("Plugins", Assembly.GetExecutingAssembly().GetName().Name, "config.json");
IConfigurationSection section = new ConfigurationBuilder().AddJsonFile(path).Build().GetSection("PluginConfiguration");
Default = new Settings(section);
}
Expand Down

0 comments on commit fbbbff4

Please sign in to comment.