From d3b997b27487a69d61c93c4eda592282dce86173 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Mon, 16 Oct 2017 22:36:46 +0200 Subject: [PATCH] buildAll.cmd --- buildAll.cmd | 17 +++++++++++++++++ buildAll.sh | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 buildAll.cmd create mode 100755 buildAll.sh diff --git a/buildAll.cmd b/buildAll.cmd new file mode 100755 index 0000000..68e41e1 --- /dev/null +++ b/buildAll.cmd @@ -0,0 +1,17 @@ +echo "Start building Electron.NET dev stack..." +echo "Restore & Build API" +cd ElectronNet.API +dotnet restore +dotnet build +cd .. +echo "Restore & Build API" +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" +dotnet electronize build \ No newline at end of file diff --git a/buildAll.sh b/buildAll.sh new file mode 100755 index 0000000..68e41e1 --- /dev/null +++ b/buildAll.sh @@ -0,0 +1,17 @@ +echo "Start building Electron.NET dev stack..." +echo "Restore & Build API" +cd ElectronNet.API +dotnet restore +dotnet build +cd .. +echo "Restore & Build API" +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" +dotnet electronize build \ No newline at end of file