You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using CommandLine;using System;using System.Windows.Forms;namespaceMWR_Config_Editor{staticclassProgram{privatestaticreadonly NLog.Logger Logger= NLog.LogManager.GetCurrentClassLogger();publicstaticOptionsArguments;publicclassOptions{[Option('c',"console", Required =false, HelpText ="Enable console")]publicboolVerbose{get;set;}}/// <summary>/// The main entry point for the application./// </summary>[STAThread]staticvoidMain(string[]args){
Logger.Debug("Program started");Arguments= Parser.Default.ParseArguments<Options>(args);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
Logger.Debug("Program ended");}}}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: