mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
BuildAll: Make sure we can build all targets at once #9
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 @robertmuehsig on GitHub (Oct 18, 2017).
Originally assigned to: @robertmuehsig on GitHub.
Currently, because we seem to name it everytime just /desktop it will overlap when we first build windows and then linux etc.
https://ci.appveyor.com/project/robertmuehsig/electron-net
@robertmuehsig commented on GitHub (Oct 19, 2017):
Idea:
Instead of build under obj/desktop, we may need to insert the "target platform" identitier like this:
obj/desktop/osx/...
or
obj/desktop/win/...
The reason to seperate each output is to ensure we can build all platform at once without overlapping each other.
obj/desktop/win/ would publish to bin/desktop/win/... etc.
This way the build wouldn't be failing anymore.
@robertmuehsig commented on GitHub (Oct 24, 2017):
Works now on Travis CI