mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-04-26 08:00:58 +00:00
31 lines
805 B
Batchfile
Executable File
31 lines
805 B
Batchfile
Executable File
echo "Start building Electron.NET dev stack..."
|
|
echo "Restore & Build API"
|
|
cd ElectronNet.API
|
|
dotnet restore
|
|
dotnet build
|
|
cd ..
|
|
echo "Restore & Build CLI"
|
|
cd ElectronNet.CLI
|
|
dotnet restore
|
|
dotnet build
|
|
cd ..
|
|
echo "Restore & Build WebApp Demo"
|
|
cd ElectronNet.WebApp
|
|
dotnet restore
|
|
dotnet build
|
|
|
|
echo "Invoke electronize build in WebApp Demo"
|
|
|
|
echo "-- win (dev-build)"
|
|
dotnet "../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
|
|
|
|
echo "-- linux (dev-build)"
|
|
dotnet "../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
|
|
|
|
REM Be aware, that for non-electronnet-dev environments the correct
|
|
REM invoke command would be dotnet electronize ...
|
|
|
|
REM Not supported on Windows Systems, because of SymLinks...
|
|
REM echo "-- osx"
|
|
REM dotnet electronize build osx
|