From 05de4071d1256e400c7d9c250badac1cdc308979 Mon Sep 17 00:00:00 2001 From: Gregor Biswanger Date: Fri, 15 May 2020 00:18:38 +0200 Subject: [PATCH] Update --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 37f9975..e2368ac 100644 --- a/README.md +++ b/README.md @@ -54,13 +54,13 @@ PM> Install-Package ElectronNET.API You start Electron.NET up with an `UseElectron` WebHostBuilder-Extension. ```csharp - public static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - { - webBuilder.UseElectron(args); - webBuilder.UseStartup(); - }); +public static IHostBuilder CreateHostBuilder(string[] args) => + Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseElectron(args); + webBuilder.UseStartup(); + }); ``` ### Startup.cs @@ -167,6 +167,8 @@ Please make sure all commits are properly documented. ## 🧪 Working with this Repo +This video provides an introduction to development for Electron.NET: [Electron.NET - Contributing Getting Started](https://youtu.be/Po-saU_Z6Ws) + This repository consists of the main parts (API & CLI) and it's own "playground" ASP.NET Core application. Both main parts produce local NuGet packages, that are versioned with 99.0.0. The first thing you will need is to run one of the buildAll scripts (.cmd for Windows, the other for macOS/Linux). If you look for pure __[demo projects](https://github.com/ElectronNET)__ checkout the other repositories.