/// <summary> /// Save config to disc /// </summary> public void SaveConfig() { var json = Storage.ToJson(); var path = Path.Combine(AppContext.BaseDirectory, "Config", "config.json"); File.WriteAllText(path, json); }
/// <summary> /// Save config to disc /// </summary> public void SaveConfig() { var json = Storage.ToJson(); File.WriteAllText(GetConfigPath(), json); }