mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
The application has been generated successfully. No interface will be displayed when opening exe? #749
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 @lzb949838390 on GitHub (Jan 2, 2022).
🚨 The issue tracker is not for questions 🚨
@lzb949838390 commented on GitHub (Jan 2, 2022):
@lzb949838390 commented on GitHub (Jan 2, 2022):
“electronize start” success
“electronize build /target win” has question
@lzb949838390 commented on GitHub (Jan 2, 2022):
I run \bin\Desktop\win-unpacked\resources\bin\OOP.BMS.Web.exe

@danatcofo commented on GitHub (Jan 2, 2022):
Looks like a bug in your code. This is not likely an electron.net issue.
@schaveyt commented on GitHub (Jan 3, 2022):
@lzb949838390
NOTE: When
electronzie buildis executed, it calls to generate a single-file, self-contained exe:By the looks of the exception, your code is utilizing reflection in a particular why that does not work when things are published as a single file. I found this issue over in the dotnet/runtime repo explaining why this is so.
You can either adjust your code or you can disable the single-file flag by:
@lzb949838390 commented on GitHub (Jan 4, 2022):
@schaveyt Thank you.I have solved the problem of win build. But I have a new problem,Error occurred while linux build.

look...
@sirkadirov commented on GitHub (Jan 10, 2022):
Hi, @lzb949838390! As I can see (https://github.com/electron-userland/electron-builder/issues/3569), it's a temporary (or not so temporary 😢: https://github.com/electron-userland/electron-build-service/issues/17) error caused due to unreachable remote build server, which is used by
electron-builder- a npm package and an infrastructure that handles electron apps packaging. You can try again later, or set up a build agent on a local machine. If you need to automate your Electron.NET app's builds, try using CI services like Travis CI, GitHub Actions or AppVeyor - I think that it would be easier to set up and maintain than hosting own build agent forelectron-builder.@FlorianRappl commented on GitHub (Nov 2, 2025):
Outdated - use
ElectronNET.CoreandElectronNET.Core.AspNet.See Wiki / What's New.