Skip to content

Commit 403669c

Browse files
update readme with usage infos
1 parent aa3f35f commit 403669c

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

ElectronNET-API-Demos/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public async void ElectronBootstrap()
5656
{
5757
Width = 1152,
5858
Height = 864,
59-
Show = true
59+
Show = false
6060
});
6161

6262
browserWindow.OnReadyToShow += () => browserWindow.Show();

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
1-
# electron.net-api-demos
2-
Explore the Electron.NET APIs
1+
# Electron.NET API Demos
2+
This is a desktop app that interactively and with sample code demonstrates core features of the [Electron.NET](https://github.com/ElectronNET/Electron.NET) API. It's built with Electron, too, of course. This app works on Windows, macOS and Linux operating systems.
3+
4+
Use this app to see what you can do with Electron.NET and use the source code to learn how to create a basic Electron.NET app.
5+
6+
---
7+
8+
## Using
9+
10+
You'll need [Node.js (v.8.x)](https://nodejs.org) and [.NET Core SDK](https://www.microsoft.com/net/download/core) installed on your computer in order to build this app.
11+
12+
```bash
13+
$ git clone https://github.com/ElectronNET/electron.net-api-demos.git
14+
$ cd electron.net-api-demos
15+
$ cd ElectronNET-API-Demos
16+
$ dotnet restore
17+
$ dotnet electronize start
18+
```
19+
20+
**Enjoy!**

0 commit comments

Comments
 (0)