mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
Electronize Command Imporvements #377
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,