Skip to content

Commit e6cb429

Browse files
committed
changes
1 parent 5316e1e commit e6cb429

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

buildAll.cmd

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ dotnet restore
1515
dotnet build
1616
echo "Invoke electronize build in WebApp Demo"
1717

18-
echo "-- win"
18+
echo "-- win (dev-build)"
1919
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
2020

21-
echo "-- linux"
21+
echo "-- linux (dev-build)"
2222
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2323

24+
REM Be aware, that for non-electronnet-dev environemnts the correct
25+
REM invoke command would be dotnet electronize ...
26+
2427
REM Not supported on Windows Systems, because of SymLinks...
2528
REM echo "-- osx"
2629
REM dotnet electronize build osx

buildAll.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ dotnet restore
1616
dotnet build
1717

1818
echo "Invoke electronize build in WebApp Demo"
19-
echo "-- win"
20-
dotnet electronize build win
19+
echo "-- win (dev-build)"
20+
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build win
2121

22-
echo "-- linux"
23-
dotnet electronize build linux
22+
echo "-- linux (dev-build)"
23+
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build linux
2424

25-
echo "-- osx"
26-
dotnet electronize build osx
25+
echo "-- osx (dev-build)"
26+
dotnet "../ElectronNet.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build osx
27+
28+
# Be aware, that for non-electronnet-dev environemnts the correct
29+
# invoke command would be dotnet electronize ...

0 commit comments

Comments
 (0)