mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
Add the ability to skip running dotnet publish so that we can call that in our build scripts. #559
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 @Delpire on GitHub (Sep 1, 2020).
Originally assigned to: @GregorBiswanger on GitHub.
We have the need to do some things to our assemblies before we want to packaged them up in an Electron app. For example, digitally signing the files.
It would be nice if we could tell
electronize buildto skip runningdotnet publishand do the rest. This way I can rundotnet publishmyself, with all the necessary arguments, then do my post build/publish work to my files, then callelectronize buildto build the Electron application.Looking at the Electron CLI, it looks like there is no way to skip the publish step, so I believe all of my assemblies will get overwritten.