mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 13:44:47 +00:00
Electronize Command Imporvements #380
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Nikey646 on GitHub (Aug 24, 2019).
Originally assigned to: @GregorBiswanger on GitHub.
The CLI is so bare bones, that it's actually hard to work with.
Some suggestions include providing the capability to automatically use Environment Variables provided via the default launch profiles. This will allow the usage of
env.IsDevelopment()and etc.Rather than building the main application and than executing the binary, launching the application via
dotnet runon the .csproj would be preferable. Continuing from this, it should support thedotnet watchtool, allowing the developer to make changes to the the ASP.Net Core webapp and having the server automatically re-compile.On a side note, because I don't really want to make another issue to suggest this, pointing developers using SPA frameworks to the SpaServices extension (
Mircosoft.AspNetCore.SpaServices) and using theISpaBuilder.UseProxyToSpaDevelopmentServermethod to provide hot reloading without any additional configuration from the standard framework methods,@GregorBiswanger commented on GitHub (Dec 3, 2019):
For 90% of the cases, it is enough to implement the application in the browser and then process it for Electron. So you can easily maintain your developer comfort without any problems.
I'm thinking about a solution for
dotnet watchwith Electron.NET CLI.@GregorBiswanger commented on GitHub (Apr 21, 2020):
Live reload is on the way with Electron.NET version 8.31.1 >> #380