mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
electronize start /target custom not working #614
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 @Bmooij on GitHub (Dec 10, 2020).
Originally assigned to: @GregorBiswanger on GitHub.
With the command
electronize start /target custom "win7-x68;win32", it always publish with x64:dotnet publish -r win-x64@Bmooij commented on GitHub (Dec 13, 2020):
I've forked the project and ran "BuildAll.cmd". It replaced "electronize" executable in the .dotnet/tools folder. It works now
@bravecobra commented on GitHub (Jan 24, 2021):
I think you needed win7-x86, or was that just a typo?
@GregorBiswanger commented on GitHub (Jul 2, 2021):
You also need the
electron-archparameter for the processor architecture.This command does what you want:
electronize build /target custom "win7-x86;win" /electron-arch ia32@GregorBiswanger commented on GitHub (Jul 2, 2021):
And for the start command you only had one typo.
This command does what you want:
electronize start /target custom "win7-x86;win32"