static int Main(string[] args) { GlobalContext.Properties["LogName"] = Path.Combine(FolderLocator.GetLocalAppDataFolder(), "Lord KiRon\\"); Log = LogManager.GetLogger(Assembly.GetExecutingAssembly().GetType()); // Log an info level message Log.Info("FB2EPUB shell extension registration utility by Lord KiRon"); List<string> options = new List<string>(); try { foreach (var param in args) { if (IsOptionParameter(param)) { options.Add(param); } } ExtRegistrator registrator = new ExtRegistrator(); if (options.Count > 0) { string fileName = GetDllFileName(); if ((options[0].ToLower() == "/r") || (options[0].ToLower() == "-r")) { string filePath = LocationDetector.DetectLocation(fileName); if (string.IsNullOrEmpty(filePath)) { Log.ErrorFormat("Unable to locate {0}", fileName); return 1; } registrator.RegistrationPath = filePath; Log.InfoFormat("Registering {0}",filePath); registrator.Register(ExtRegistrator.RegistrationExtensionEnum.BaseSet); return 1; } if ((options[0].ToLower() == "/rall") || (options[0].ToLower() == "-rall")) { string filePath = LocationDetector.DetectLocation(fileName); if (string.IsNullOrEmpty(filePath)) { Log.ErrorFormat("Unable to locate {0}", fileName); return 1; } registrator.RegistrationPath = filePath; Log.InfoFormat("Registering {0}", filePath); registrator.Register(ExtRegistrator.RegistrationExtensionEnum.All); return 0; } if ((options[0].ToLower() == "/u") || options[0].ToLower() == "-u") { Log.Info("Unregistering"); registrator.Unregister(); return 0; } } else { Application.Run(new MainForm()); } } catch (Exception ex) { Log.Error(ex); return 2; } return 0; }
static int Main(string[] args) { GlobalContext.Properties["LogName"] = Path.Combine(FolderLocator.GetLocalAppDataFolder(), "Lord KiRon\\"); Log = LogManager.GetLogger(Assembly.GetExecutingAssembly().GetType()); // Log an info level message Log.Info("FB2EPUB shell extension registration utility by Lord KiRon"); List <string> options = new List <string>(); try { foreach (var param in args) { if (IsOptionParameter(param)) { options.Add(param); } } ExtRegistrator registrator = new ExtRegistrator(); if (options.Count > 0) { string fileName = GetDllFileName(); if ((options[0].ToLower() == "/r") || (options[0].ToLower() == "-r")) { string filePath = LocationDetector.DetectLocation(fileName); if (string.IsNullOrEmpty(filePath)) { Log.ErrorFormat("Unable to locate {0}", fileName); return(1); } registrator.RegistrationPath = filePath; Log.InfoFormat("Registering {0}", filePath); registrator.Register(ExtRegistrator.RegistrationExtensionEnum.BaseSet); return(1); } if ((options[0].ToLower() == "/rall") || (options[0].ToLower() == "-rall")) { string filePath = LocationDetector.DetectLocation(fileName); if (string.IsNullOrEmpty(filePath)) { Log.ErrorFormat("Unable to locate {0}", fileName); return(1); } registrator.RegistrationPath = filePath; Log.InfoFormat("Registering {0}", filePath); registrator.Register(ExtRegistrator.RegistrationExtensionEnum.All); return(0); } if ((options[0].ToLower() == "/u") || options[0].ToLower() == "-u") { Log.Info("Unregistering"); registrator.Unregister(); return(0); } } else { Application.Run(new MainForm()); } } catch (Exception ex) { Log.Error(ex); return(2); } return(0); }