コード例 #1
0
 protected void ensureConfigExists()
 {
     if (!File.Exists(CONFIG_FILE))
     {
         Log.Information("LSDViewConfig.json not found - creating anew");
         Config = new LSDViewConfig();
         serializeConfig();
     }
 }
コード例 #2
0
ファイル: ConfigController.cs プロジェクト: Sievaxx/LSDView
 private void ensureConfigExists()
 {
     if (!File.Exists(CONFIG_FILE))
     {
         Logger.Log()(LogLevel.INFO, "LSDViewConfig.json not found - creating anew");
         Config = new LSDViewConfig();
         serializeConfig();
     }
 }
コード例 #3
0
 protected void deserializeConfig()
 {
     Log.Information("Deserializing LSDViewConfig.json");
     Config = JsonConvert.DeserializeObject <LSDViewConfig>(File.ReadAllText(CONFIG_FILE));
 }
コード例 #4
0
ファイル: ConfigController.cs プロジェクト: Sievaxx/LSDView
 private void deserializeConfig()
 {
     Logger.Log()(LogLevel.INFO, "Deserializing LSDViewConfig.json");
     Config = JsonConvert.DeserializeObject <LSDViewConfig>(File.ReadAllText(CONFIG_FILE));
 }