mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
16 lines
533 B
Bash
Executable File
16 lines
533 B
Bash
Executable File
echo "Start building Electron.NET dev stack..."
|
|
|
|
echo "Restore & Build API"
|
|
cd ElectronNET.API && \
|
|
dotnet restore && \
|
|
dotnet build --configuration Release --force /property:Version=5.22.12 && \
|
|
dotnet pack /p:Version=5.22.12 --configuration Release --force --output "%~dp0artifacts";
|
|
|
|
cd ../;
|
|
|
|
echo "Restore & Build CLI"
|
|
cd ElectronNET.CLI && \
|
|
dotnet restore && \
|
|
dotnet build --configuration Release --force /property:Version=5.22.12 && \
|
|
dotnet pack /p:Version=5.22.12 --configuration Release --force --output "%~dp0artifacts";
|