We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec4d9e commit 828d7f1Copy full SHA for 828d7f1
BuildInstaller.bat
@@ -32,11 +32,13 @@ CD /D "%current_path%"
32
ECHO:
33
ECHO === Building Installer ===
34
CALL "%devenv_path%" UnityLauncherPro.sln /Rebuild Release /Project UnityLauncherProInstaller
35
+SET "exitCode=%ERRORLEVEL%"
36
37
38
ECHO === Build Complete ===
39
-REM Clean up registry key if needed (optional)
40
+REM Optional cleanup: disable workaround
41
REG DELETE "HKCU\Software\Microsoft\VisualStudio\Setup" /v VSDisableOutOfProcBuild /f >NUL 2>&1
42
43
ENDLOCAL
44
+EXIT /B %exitCode%
0 commit comments