Skip to content

Commit

Permalink
Some useful .bat files
Browse files Browse the repository at this point in the history
  • Loading branch information
MilenVolf committed Jun 18, 2024
1 parent 4d928df commit b4b0f7a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
19 changes: 19 additions & 0 deletions BUILD.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@echo off
chcp 65001 > nul
setlocal
echo Версии сборки:
echo 1 - Debug
echo 2 - Release
:SetBuild
set /p choice="Введите номер требуемой сборки: "
if "%choice%"=="1" (
echo Сборка Debug версии...
dotnet build -c Debug
)else if "%choice%"=="2" (
echo Сборка Release версии...
dotnet build -c Release
)else (
echo Некорректный номер сборки. Пожалуйста, выберите 1 или 2.
goto SetBuild)
endlocal
pause
6 changes: 6 additions & 0 deletions run-localization.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
cd Resources/Prototypes
python ../../Tools/ss14_ru/yamlextractor.py
pause
python ../../Tools/ss14_ru/keyfinder.py
pause

0 comments on commit b4b0f7a

Please sign in to comment.