mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
The 32 bit exe generation code wont run in package manager or cmd console. a double quote is missing, wasted many days of work due to this simple issue #586
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 @arun-chief on GitHub (Nov 1, 2020).
electronize.exe build /target custom win-x86;win /dotnet-configuration Debug /electron-arch ia32
wont work but
electronize.exe build /target custom "win-x86;win" /dotnet-configuration Debug /electron-arch ia32
will work
the difference here is "win-x86;win", double quotes
so i request you to fix the documentation