mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
Package Size and Optimization #200
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 @srameh on GitHub (Jul 31, 2018).
Originally assigned to: @robertmuehsig on GitHub.
I have successfully built an application using MVC Core 2 and SQLite. After running the BUILD command I noticed the following issues:
The size of the build folder is 360MB. This is huge for simple MVC app.
The app launch time is very slow. It takes about 20-30 seconds before you see the window.
The Application name defaults to ElectronNET.Host. This value is coming from package.json which is generated by the Electron.net.
The App icon defaults to Electron icon. Passing new icon path as part of the build command parameter did not help.
How can I include my own package.json file so it does not take the name ElectronNET.Host?
How can I reduce the size of the application and fix the above issues?