This commit is contained in:
Robert Muehsig
2017-11-14 22:06:33 +01:00
parent 5316e1e2b8
commit e6cb429ecb
2 changed files with 14 additions and 8 deletions

View File

@@ -15,12 +15,15 @@ dotnet restore
dotnet build
echo "Invoke electronize build in WebApp Demo"
echo "-- win"
echo "-- win (dev-build)"
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
echo "-- linux"
echo "-- linux (dev-build)"
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
REM Be aware, that for non-electronnet-dev environemnts 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

View File

@@ -16,11 +16,14 @@ dotnet restore
dotnet build
echo "Invoke electronize build in WebApp Demo"
echo "-- win"
dotnet electronize build win
echo "-- win (dev-build)"
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
echo "-- linux"
dotnet electronize build linux
echo "-- linux (dev-build)"
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
echo "-- osx"
dotnet electronize build osx
echo "-- osx (dev-build)"
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build osx
# Be aware, that for non-electronnet-dev environemnts the correct
# invoke command would be dotnet electronize ...