I'm using:
TCC 27.00.18 x64 Windows 10 [Version 10.0.19042.746]
And just recently installed Microsoft Visual Studio Community 2019, but TCC has some trouble running the command prompt initialization scripts. When running:
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
I get:
**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.8.3
** Copyright (c) 2020 Microsoft Corporation
**********************************************************************
Cancel batch job C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\vsdevcmd\core\dotnet.bat
(Y/N/A) : N
TCC: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\vsdevcmd\core\dotnet.bat [282]
Missing SETLOCAL
[vcvarsall.bat] Environment initialized for: 'x86'
Digging into the setup scripts (which are quite extensive):
267 @REM Choose FrameworkDir32 or FrameworkDir64 depending on the preferred bitness.
268 setlocal EnableDelayedExpansion
269 set __DOTNET_FrameworkDir=!FrameworkDir%__DOTNET_PREFERRED_BITNESS%!
When debugging, the "Cancel" seems to come from line 268, and the error message comes from the "endlocal" that should have matched the "setlocal".
Why would I be getting a "Cancel" on a perfectly valid setlocal call?
TCC 27.00.18 x64 Windows 10 [Version 10.0.19042.746]
And just recently installed Microsoft Visual Studio Community 2019, but TCC has some trouble running the command prompt initialization scripts. When running:
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
I get:
**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.8.3
** Copyright (c) 2020 Microsoft Corporation
**********************************************************************
Cancel batch job C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\vsdevcmd\core\dotnet.bat
(Y/N/A) : N
TCC: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\vsdevcmd\core\dotnet.bat [282]
Missing SETLOCAL
[vcvarsall.bat] Environment initialized for: 'x86'
Digging into the setup scripts (which are quite extensive):
267 @REM Choose FrameworkDir32 or FrameworkDir64 depending on the preferred bitness.
268 setlocal EnableDelayedExpansion
269 set __DOTNET_FrameworkDir=!FrameworkDir%__DOTNET_PREFERRED_BITNESS%!
When debugging, the "Cancel" seems to come from line 268, and the error message comes from the "endlocal" that should have matched the "setlocal".
Why would I be getting a "Cancel" on a perfectly valid setlocal call?