From d01d82ffecf80f8cc946b1a5554c2c6d6416a289 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Sun, 11 Feb 2018 22:33:22 +0100 Subject: [PATCH] custom target testing --- buildAll.cmd | 4 ++++ buildAll.sh | 3 +++ 2 files changed, 7 insertions(+) diff --git a/buildAll.cmd b/buildAll.cmd index b9b37e6..db1f17c 100755 --- a/buildAll.cmd +++ b/buildAll.cmd @@ -22,6 +22,10 @@ dotnet "../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build echo "/target linux (dev-build)" dotnet "../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build /target linux +echo "/target custom win7-x86;win32 (dev-build)" +dotnet "../ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build /target custom win7-x86;win32 + + :: Be aware, that for non-electronnet-dev environments the correct :: invoke command would be dotnet electronize ... diff --git a/buildAll.sh b/buildAll.sh index 8a78c98..19263f3 100755 --- a/buildAll.sh +++ b/buildAll.sh @@ -27,5 +27,8 @@ dotnet "$dir/ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" bui echo "/target osx (dev-build)" dotnet "$dir/ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build /target osx +echo "/target custom win7-x86;win32 (dev-build)" +dotnet "$dir/ElectronNET.CLI/bin/Debug/netcoreapp2.0/dotnet-electronize.dll" build /target custom win7-x86;win32 + # Be aware, that for non-electronnet-dev environments the correct # invoke command would be dotnet electronize ... \ No newline at end of file