File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change 11echo " Start building Electron.NET dev stack..."
2+
23echo " Restore & Build API"
3- cd ElectronNet.API
4- dotnet restore
5- dotnet build --configuration Release --force /property:Version=5.22.12
6- dotnet pack /p:Version=5.22.12 --configuration Release --force --output " %~dp0artifacts"
7- cd ..
4+ cd ElectronNET.API && \
5+ dotnet restore && \
6+ dotnet build --configuration Release --force /property:Version=5.22.12 && \
7+ dotnet pack /p:Version=5.22.12 --configuration Release --force --output " %~dp0artifacts" ;
8+
9+ cd ../;
10+
811echo " Restore & Build CLI"
9- cd ElectronNet.CLI
10- dotnet restore
11- dotnet build --configuration Release --force /property:Version=5.22.12
12- dotnet pack /p:Version=5.22.12 --configuration Release --force --output " %~dp0artifacts"
13- cd ..
12+ cd ElectronNET.CLI && \
13+ dotnet restore && \
14+ dotnet build --configuration Release --force /property:Version=5.22.12 && \
15+ dotnet pack /p:Version=5.22.12 --configuration Release --force --output " %~dp0artifacts" ;
You can’t perform that action at this time.
0 commit comments