mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
26 lines
399 B
Batchfile
26 lines
399 B
Batchfile
REM dll version file must be set before compilation and changes can be committed
|
|
call node .\scripts\node\set_version_dll.js
|
|
|
|
cd backend
|
|
msbuild olympus.sln /t:Build /p:Configuration=Release
|
|
cd ..
|
|
|
|
cd frontend
|
|
|
|
cd react
|
|
call npm install
|
|
call npm run build-release
|
|
cd ..
|
|
|
|
cd server
|
|
rmdir /s /q hgt
|
|
call npm install
|
|
call npm run build-release
|
|
cd ..
|
|
|
|
cd ..
|
|
|
|
cd manager
|
|
call npm run build-release
|
|
cd ..
|