mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-26 07:45:57 +03:00
[GH-ISSUE #257] Batch File Improvement #119
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#119
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ModdersCentral on GitHub (Jun 2, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/257
Sorry that i cant put it in a pull request.
Also how do i put labels on, any-time i click labels it sends me to the list of things with that label
ECHO OFF
CLS
:MENU
ECHO.
ECHO ...............................................
ECHO PRESS 1, 2 to select your task, or 3 to EXIT.
ECHO ...............................................
ECHO.
ECHO 1 - Build Debug
ECHO 2 - Build Release
ECHO 3 - EXIT
ECHO.
SET /P M=Type 1, 2, or 3 then press ENTER:
IF %M%==1 GOTO DEBUGSETTING
IF %M%==2 GOTO RELEASESETTING
IF %M%==3 GOTO EOF
:DEBUGSETTING
"%windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "%~dp0\xRAT 2.sln" /t:Build /p:Configuration=Debug
GOTO MENU
:RELEASESETTING
"%windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "%~dp0\xRAT 2.sln" /t:Build /p:Configuration=Release
GOTO MENU
@MaxXor commented on GitHub (Jun 2, 2015):
Only I can add labels, but no sorry the existing build.bat's are enough.