Output custom command line help usage #977

Closed
opened 2026-01-29 16:53:36 +00:00 by claunia · 1 comment
Owner

Originally created by @icnocop on GitHub (Jul 15, 2025).

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.

Originally created by @icnocop on GitHub (Jul 15, 2025). 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.
claunia added the Feature label 2026-01-29 16:53:36 +00:00
Author
Owner

@FlorianRappl commented on GitHub (Oct 31, 2025):

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

See Wiki / What's New.

@FlorianRappl commented on GitHub (Oct 31, 2025): Outdated - use `ElectronNET.Core` and `ElectronNET.Core.AspNet`. See [Wiki / What's New](https://github.com/ElectronNET/Electron.NET/wiki/What's-New).
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Electron.NET#977