mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
How do I create a desktop application on a Mac? #465
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 @ajayplutus on GitHub (Mar 17, 2020).
Originally assigned to: @robertmuehsig on GitHub.
Hi,
I have created asp.net core 3.1 web application with simple login user functionality. Now I am trying to convert to a desktop application via Electron JS on a Mac machine, but I am getting problems on a build application.
I want to know how to create build via commands for a Mac machine.
I have tried with the solutions below, but no success:
Https://github.com/ElectronNET/Electron.NET#start-the-application
Https://github.com/ElectronNET/Electron.NET/issues/190
Thanks in advance.
@ajayplutus commented on GitHub (Mar 18, 2020):
Hello,
I have found the solution, I've created a build on the folder path through the terminal by using below commands :
dotnet tool install ElectronNET.CLI -g
electronize init
electronize start
electronize build /target win
Thanks & Regards
Ajay