Skip to content

Commit ce52988

Browse files
2 parents 3a52680 + 6d28e57 commit ce52988

File tree

4 files changed

+70
-7
lines changed

4 files changed

+70
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please search existing issues to avoid creating duplicates. -->
11+
12+
<!-- Which version of Electron.NET CLI and API are you using? -->
13+
<!-- Please always try to use latest version before report. -->
14+
* **Version**:
15+
16+
<!-- Which version of .NET Core and Node.js are you using (if applicable)? -->
17+
18+
<!-- What target are you building for? -->
19+
* **Target**:
20+
21+
<!-- Enter your issue details below this comment. -->
22+
<!-- If you want, you can donate to increase issue priority (https://donorbox.org/electron-net) -->
23+
24+
Steps to Reproduce:
25+
26+
1.
27+
2.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: Feature
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Please search existing feature request to avoid creating duplicates. -->
11+
12+
<!-- If you want, you can donate to increase feature request priority (https://donorbox.org/electron-net) -->
13+
<!-- Describe the feature you'd like. -->

.github/ISSUE_TEMPLATE/question.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Question
3+
about: The issue tracker is not for questions. Please ask questions on https://stackoverflow.com/questions/tagged/electron.net
4+
or via chat in https://gitter.im/ElectronNET/community.
5+
title: ''
6+
labels: question
7+
assignees: ''
8+
9+
---
10+
11+
🚨 The issue tracker is not for questions 🚨
12+
13+
The issue tracker is not for questions. Please ask questions on https://stackoverflow.com/questions/tagged/electron.net or via chat in https://gitter.im/ElectronNET/community.

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[![Electron.NET Logo](https://github.com/ElectronNET/Electron.NET/blob/master/assets/images/electron.net-logo.png)](https://github.com/ElectronNET/Electron.NET)
22

3+
[![donate](https://img.shields.io/badge/Donate-Donorbox-green.svg)](https://donorbox.org/electron-net)
4+
35

46
AppVeyor (Win/Linux): [![Build status](https://ci.appveyor.com/api/projects/status/q95h4xt14papwi05/branch/master?svg=true)](https://ci.appveyor.com/project/robertmuehsig/electron-net/branch/master)
57

68
* Checkout AppVeyor Artifacts: Contains the WebApp sample built for Windows & Linux!
79

810
Travis-CI (Win/macOS/Linux): [![Build Status](https://travis-ci.org/ElectronNET/Electron.NET.svg?branch=master)](https://travis-ci.org/ElectronNET/Electron.NET)
911

10-
Build cross platform desktop apps with .NET Core 2.0 and ASP.NET NET Core.
12+
Build cross platform desktop apps with .NET Core 2.2 and ASP.NET NET Core.
1113

1214
Electron.NET is a __wrapper__ around a "normal" Electron application with an embedded ASP.NET Core application. Via our Electron.NET IPC bridge we can invoke Electron APIs from .NET.
1315

@@ -24,7 +26,11 @@ Well... there are lots of different approaches how to get a X-plat desktop app r
2426

2527
# Requirements to run:
2628

27-
The current Electron.NET CLI builds Windows/macOS/Linux binaries. Our API uses .NET Core 2.0, so our minimum base OS is the same as [.NET Core 2](https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0-supported-os.md).
29+
The current Electron.NET CLI builds Windows/macOS/Linux binaries. Our API uses .NET Core 2.2, so our minimum base OS is the same as [.NET Core 2.2](https://github.com/dotnet/core/blob/master/release-notes/2.2/2.2-supported-os.md).
30+
31+
# Community
32+
33+
[![Gitter](https://badges.gitter.im/ElectronNET/community.svg)](https://gitter.im/ElectronNET/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
2834

2935
# Usage:
3036

@@ -88,21 +94,21 @@ To start the application make sure you have installed the "[ElectronNET.CLI](htt
8894

8995
dotnet tool install ElectronNET.CLI -g
9096

91-
* Make sure you have __node.js v8.6.0__ and on __macOS/Linux__ the electron-packager installed!
97+
* Make sure you have __node.js v8.6.0__ and on __macOS/Linux__ the electron-builder installed!
9298

9399
sudo npm install electron-packager --global
94100

95101
At the first time, you need an Electron.NET project initialization. Type the following command in your ASP.NET Core folder:
96102

97103
```
98-
electronize init
104+
electronize init
99105
```
100106

101107
* Now a electronnet.manifest.json should appear in your ASP.NET Core project
102108
* Now run the following:
103109

104110
```
105-
electronize start
111+
electronize start
106112
```
107113
### Note
108114
> Only the first electronize start is slow. The next will go on faster.
@@ -139,7 +145,7 @@ Those three "default" targets will produce x64 packages for those platforms.
139145
For certain NuGet packages or certain scenarios you may want to build a pure x86 application. To support those things you can define the desired [.NET Core runtime](https://docs.microsoft.com/en-us/dotnet/core/rid-catalog), the [electron platform](https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#platform) and [electron architecture](https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#arch) like this:
140146

141147
```
142-
electronize build build /target custom win7-x86;win32 /electron-arch ia32
148+
electronize build /target custom win7-x86;win32 /electron-arch ia32
143149
```
144150

145151
The end result should be an electron app under your __/bin/desktop__ folder.
@@ -169,7 +175,11 @@ Please make sure all commits are properly documented.
169175
* **Robert Muehsig** - Software Developer - from Dresden, Germany, now living & working in Switzerland. Microsoft MVP & Web Geek. - [codeinside Blog](https://blog.codeinside.eu) - Twitter [@robert0muehsig](https://twitter.com/robert0muehsig)
170176

171177
See also the list of [contributors](https://github.com/ElectronNET/Electron.NET/graphs/contributors) who participated in this project.
172-
178+
179+
## Donate
180+
181+
We do this open source work in our free time. If you'd like us to invest more time on it, please [donate](https://donorbox.org/electron-net). Donation can be used to increase some issue priority. Thank you!
182+
173183
# License
174184
MIT-licensed
175185

0 commit comments

Comments
 (0)