File tree Expand file tree Collapse file tree 2 files changed +21
-12
lines changed
Expand file tree Collapse file tree 2 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cd ElectronNet.API
44dotnet restore
55dotnet build
66cd ..
7- echo " Restore & Build API "
7+ echo " Restore & Build CLI "
88cd ElectronNet.CLI
99dotnet restore
1010dotnet build
@@ -13,13 +13,17 @@ echo "Restore & Build WebApp Demo"
1313cd ElectronNet.WebApp
1414dotnet restore
1515dotnet build
16+
1617echo " Invoke electronize build in WebApp Demo"
1718
18- echo " -- win"
19- dotnet " ../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
19+ echo " -- win (dev-build)"
20+ dotnet " ../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
21+
22+ echo " -- linux (dev-build)"
23+ dotnet " ../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2024
21- echo " -- linux "
22- dotnet " ../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll " build linux
25+ REM Be aware, that for non-electronnet-dev environments the correct
26+ REM invoke command would be dotnet electronize ...
2327
2428REM Not supported on Windows Systems, because of SymLinks...
2529REM echo "-- osx"
Original file line number Diff line number Diff line change @@ -5,22 +5,27 @@ cd $dir/ElectronNET.API
55dotnet restore
66dotnet build
77cd ..
8- echo " Restore & Build API"
8+
9+ echo " Restore & Build CLI"
910cd $dir /ElectronNET.CLI
1011dotnet restore
1112dotnet build
1213cd ..
14+
1315echo " Restore & Build WebApp Demo"
1416cd $dir /ElectronNET.WebApp
1517dotnet restore
1618dotnet build
1719
1820echo " Invoke electronize build in WebApp Demo"
19- echo " -- win"
20- dotnet electronize build win
21+ echo " -- win (dev-build)"
22+ dotnet " $dir /ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
23+
24+ echo " -- linux (dev-build)"
25+ dotnet " $dir /ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2126
22- echo " -- linux "
23- dotnet electronize build linux
27+ echo " -- osx (dev-build) "
28+ dotnet " $dir /ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet- electronize.dll " build osx
2429
25- echo " -- osx "
26- dotnet electronize build osx
30+ # Be aware, that for non-electronnet-dev environments the correct
31+ # invoke command would be dotnet electronize ...
You can’t perform that action at this time.
0 commit comments