We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab59f5 commit 1498583Copy full SHA for 1498583
Build.cmd
@@ -91,7 +91,9 @@ CALL :recreate "Program" || GOTO :error
91
92
REM Build main program.
93
REM Disable warning CS1591 "Missing XML comment for publicly visible type or member".
94
-MSBuild Source\ORTS.sln /t:Clean;Build /p:Configuration=Release /p:NoWarn=1591 || GOTO :error
+SET BuildConfiguration=Release
95
+IF "%Mode%" == "Unstable" SET BuildConfiguration=Debug
96
+MSBuild Source\ORTS.sln /t:Clean;Build /p:Configuration=%BuildConfiguration% /p:NoWarn=1591 || GOTO :error
97
98
REM Build contributed Timetable Editor.
99
PUSHD Source\Contrib\TimetableEditor && CALL Build.cmd && POPD || GOTO :error
0 commit comments