electron.NET
lets you build cross platform desktop apps with ASP.NET NET Core. Go here to learn more.
Questions tagged [electron.net]
66 questions
2
votes
2 answers
How to Debug Electron.NET application
I'm Developing an application using Electron.NET and .Net Core 2.1 in Visual Studio Code, Now I'm Facing an issue in Debugging an Electron.NET Application.I have also Configure lunch.json file for debugging it,but still not able to debug the app.…

Hiren Patel
- 1,071
- 11
- 34
1
vote
0 answers
Electron Error: write EPIPE at afterWriteDispatched
After building our Electron app on Mac we see a popup coming with below error, same app is working on windows without any error.
Note: App keeps running but this error popup comes 4-5 time
Uncaught Exception:
Error: write EPIPE
at…

Jigar Jadav
- 51
- 6
1
vote
0 answers
How do I build/deploy a Blazor app to desktop using Electron.NET?
I am attempting to build/deploy a Blazor app to desktop using Electron.NET. I have one Visual Studio 2022 solution containing a Blazor project and an Electron.NET project.
Following along with this tutorial…

Codester89
- 93
- 1
- 2
- 5
1
vote
0 answers
ElectronNet/Electron.NET Error installing extension
I am getting error when trying to install extension using ElectronNet.
The code I'm trying to install the extension.
var browserExtensionWindow = await Electron.WindowManager.CreateWindowAsync(new BrowserWindowOptions()
{
…

Max Joffrey
- 227
- 4
- 18
1
vote
1 answer
Using Blazor with Electron.NET, how can I execute code inside a component whenever I click on a MenuItem?
I am using Blazor Server.
Inside my startup I am configuring the MenuItems like this:
var menu = new[]
{
new MenuItem
{
Label = "File", Submenu = new[]
{
new MenuItem
{
Label = "Save",…

Marco Siffert
- 535
- 1
- 6
- 22
1
vote
0 answers
How do I prevent .net core service closing when I close electron window
I am building an Electron app in .net and using the Electron.net package and following their example web app.
But I would like to keep my .net web service running, even if the user closes the Electron window.
I'm planning to put a tray icon to allow…

Quintonn
- 770
- 8
- 29
1
vote
0 answers
How to disable auto launch of an electron application after installation?
I have an Asp.Net Core application and I'm using ElectronNET to make a desktop application. After the installation, my electron application starts automatically. How can I disable the auto launch?

Aykut Demirci
- 168
- 4
- 19
1
vote
1 answer
Debugging ELECTRON.NET app from VISUALSTUDIO 2019 - NETCORE 3.1
Im having a hard time trying to debug an ELECTRON.NET APP using visual studio 2019.
It is a ASP.NET CORE 3.1 MVC with RAZOR.
The app runs fine in ELECTRON, however when I attach the process to visual studio, the symbols are never loaed.
I´ve tried…

Paulo Costa
- 66
- 3
1
vote
1 answer
Calling javascript from Blazor results in error
I have a Blazor app built on .NET Core 3.1 and I need to be able to access USB port resources. I keep getting the error:
JavaScript interop calls cannot be issued at this time. This is
because the component is being statically rendererd. When…

HeineSkov
- 449
- 1
- 7
- 18
1
vote
1 answer
Passing Command line arguments to .exe generated after build
I have a desktop App.exe built using Electron.Net. If I pass parameters along with "electronize start", these argument values are ignored. Even after build, I am not able to pass parameters as command line arguments to .exe from command prompt.
In…

VH97
- 13
- 4
1
vote
1 answer
How to build installers for .NET Core app?
I develop my NET Core app+Electron.NET. It is cross-platform app.
How to build installers for .NET Core app for Windows? Linux? Mac OS? What tool to use?

ZedZip
- 5,794
- 15
- 66
- 119
1
vote
0 answers
How to create a child modal window in Electron.NET?
I am creating an app using Electron.NET. Although in Electron there is the possibility to create a window passing its parent in the window options, i cannot seem to be able to do that in Electron.NET.
I tried also to use the…

georgekar
- 11
- 2
1
vote
0 answers
Show video on Raspberry pi in .net
I need to implement showing video (from file or stream, it does not matter) using Raspberry pi, and requirement is to use c# programming language (mono or preferably .net core). Video needs to be shown in full screen on a monitor/TV pi is connected…

user2081328
- 159
- 3
- 15
1
vote
2 answers
How to run a scheduled task using electron.net
I need a task to run every 60 seconds to go out and fetch data from a web api. Once the data comes back it will process the data which should not freeze the gui when processing. Is there a way to do this using electron.net?

Luke101
- 63,072
- 85
- 231
- 359
0
votes
0 answers
Has anyone succeeded in building, signing and notarizing a universal Mac app using Electron.net?
Windows was straight forwards, but I’m encountering real difficulty with the Mac version, probably because I’m new to Macs.
My mac device uses an arm64 silicon chip.
The issues I’m finding are:
I can successfully build and sign a dng for the arm64,…