mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
10 lines
289 B
Bash
Executable File
10 lines
289 B
Bash
Executable File
echo Bundle ASP.NET Core Project into EXE
|
|
|
|
cd ElectronNET.WebApp
|
|
dotnet restore
|
|
dotnet publish -r osx-x64 --output ../ElectronNET.Host/bin/
|
|
|
|
echo Start Electron with bundled EXE
|
|
cd ../ElectronNET.Host
|
|
npm install
|
|
../ElectronNET.Host/node_modules/.bin/electron "../ElectronNET.Host/main.js" |