ElectronNET/Electron.NET

Output custom command line help usage

Closed this issue · 1 comments

Hi.

Thank you for Electron.NET.

I would like to request the ability to display custom command line help usage.

For example, when I electronize the app and run MyElectronizedApp.exe --help I want to display my custom command line usage.

For example, in Program.cs:

public static async Task<int> Main(string[] args)
{
    if (Electron.IsRunningInElectron)
    {
        // parse args passed to the electronized app, before the web app is run
        // if `--help` is passed, display help usage and exit (do not run the app)
    }
}

Thank you.

Outdated - use ElectronNET.Core and ElectronNET.Core.AspNet.

See Wiki / What's New.