You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
__Please note:__ Currently it is important to use ASP.NET Core with MVC. If you are working with the dotnet CLI, use
97
-
98
-
```
99
-
dotnet new mvc
100
-
```
101
-
102
74
## Start the Application
103
75
104
76
To start the application make sure you have installed the "[ElectronNET.CLI](https://www.nuget.org/packages/ElectronNET.CLI/)" packages as global tool:
@@ -119,13 +91,26 @@ electronize init
119
91
```
120
92
electronize start
121
93
```
94
+
95
+
### Note
96
+
> Only the first electronize start is slow. The next will go on faster.
97
+
98
+
## Develop Electron.NET apps using a file watcher
99
+
100
+
The file watcher is included with version 8.31.1 of Electron.NET. For example, a file change can trigger compilation, test execution, or deployment. The Electron.NET window will automatically refresh and new code changes will be visible more quickly. The following Electron.NET CLI command is required:
101
+
102
+
```
103
+
electronize start /watch
104
+
```
105
+
122
106
### Note
123
107
> Only the first electronize start is slow. The next will go on faster.
124
108
125
109
## Debug
126
110
127
111
Start your Electron.NET application with the Electron.NET CLI command. In Visual Studio attach to your running application instance. Go in the __Debug__ Menu and click on __Attach to Process...__. Sort by your projectname on the right and select it on the list.
128
112
113
+
129
114
## Usage of the Electron-API
130
115
131
116
A complete documentation will follow. Until then take a look in the source code of the sample application:
@@ -181,7 +166,7 @@ Please make sure all commits are properly documented.
181
166
182
167
See also the list of [contributors](https://github.com/ElectronNET/Electron.NET/graphs/contributors) who participated in this project.
183
168
184
-
##Donate
169
+
# Donate
185
170
186
171
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!
187
172
@@ -192,21 +177,29 @@ MIT-licensed
192
177
193
178
# Important notes
194
179
195
-
## ElectronNET.API & ElectronNET.CLI Version 5.22.12
180
+
## ElectronNET.API & ElectronNET.CLI Version 8.31.1
181
+
182
+
Make sure you also have the new Electron.NET API & CLI 8.31.1 version.
183
+
184
+
```
185
+
dotnet tool update ElectronNET.CLI -g
186
+
```
196
187
197
-
Make sure you also have the new Electron.NET CLI 5.22.12 version. This now uses [electron-builder](https://www.electron.build/configuration/configuration) and the necessary configuration to build is made in the **electron.manifest.json** file. In addition, own Electron.NET configurations are stored. Please make sure that your **electron.manifest.json** file has the following new structure:
188
+
This now uses [electron-builder](https://www.electron.build/configuration/configuration) and the necessary configuration to build is made in the **electron.manifest.json** file (on the build part). In addition, own Electron.NET configurations are stored (on the root). Please make sure that your **electron.manifest.json** file has the following new structure:
0 commit comments