Play Along
10 |Use the demo snippets in an Electron app of your own. The Electron Quick Start(opens in new window) app is a bare-bones setup that pairs with these demos. Follow the instructions here to get it going. 11 | To activate Electron.NET include the ElectronNET.API NuGet package in your ASP.NET Core app. 12 |
13 | PM> Install-Package ElectronNET.API
14 |
19 | public static IWebHost BuildWebHost(string[] args)
20 | {
21 | return WebHost.CreateDefaultBuilder(args)
22 | .UseElectron(args)
23 | .UseStartup()
24 | .Build();
25 | }
26 |
27 | About the Code
30 |The source code of this app has been organized with ease of navigation in mind. 31 | You will find for each API Category the source code into the Controllers. 32 | This Demo-App based on the Electron API Demos.
33 |