Click here to Skip to main content
15,889,472 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
Randor 29-Jan-21 3:34
professional Randor 29-Jan-21 3:34 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
dandy7229-Jan-21 5:18
dandy7229-Jan-21 5:18 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
charlieg3-Feb-21 16:23
charlieg3-Feb-21 16:23 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
charlieg3-Feb-21 16:17
charlieg3-Feb-21 16:17 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
Randor 4-Feb-21 11:59
professional Randor 4-Feb-21 11:59 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
Richard MacCutchan29-Jan-21 1:53
mveRichard MacCutchan29-Jan-21 1:53 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
honey the codewitch29-Jan-21 2:19
mvahoney the codewitch29-Jan-21 2:19 
GeneralRe: Microsoft's Clownish Developer Prompt Pin
Stuart Dootson29-Jan-21 2:33
professionalStuart Dootson29-Jan-21 2:33 
You're not the only person to feel that pain...

As it happens, I use MSVC with VS Code for most of my development. Intellisense works fine, and I build from the integrated terminal. This relies on a batch script I wrote years ago that would call the appropriate Visual Studio setup script before either dropping back to the CMD prompt or jumping into a bash shell (used to be msys2 bash, now I use WSL bash). The way I've configured it, VSCode uses the script to set its integrated terminal up for MSVC2017/x86.

Here's the Visual Studio 2015 part of that script's code (my script supports MSVC 2003, 2008, 2010, 2013, 2015, 2017 and 2019 - fortunately, 2013 is the oldest one I use at all now!):
:vs2015
if not exist "C:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\vcvarsall.bat" (
    call :not_installed "Visual Studio 2015"
    exit /b 1
)
rem %~1 is either x86 or amd64
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\vc\vcvarsall.bat" %~1
goto :eof

Yes, hard-coded paths suck, but ¯\_(ツ)_/¯
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

GeneralRe: Microsoft's Clownish Developer Prompt Pin
honey the codewitch29-Jan-21 2:39
mvahoney the codewitch29-Jan-21 2:39 
AnswerRe: Microsoft's Clownish Developer Prompt Pin
Randor 29-Jan-21 3:09
professional Randor 29-Jan-21 3:09 
JokeRe: Microsoft's Clownish Developer Prompt Pin
Nelek29-Jan-21 2:36
protectorNelek29-Jan-21 2:36 
GeneralHow to do an internet search for text that has the character ["]? Pin
swampwiz28-Jan-21 23:47
swampwiz28-Jan-21 23:47 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
Rage28-Jan-21 23:50
professionalRage28-Jan-21 23:50 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
OriginalGriff29-Jan-21 0:03
mveOriginalGriff29-Jan-21 0:03 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
jsc4229-Jan-21 0:38
professionaljsc4229-Jan-21 0:38 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
Richard Deeming29-Jan-21 0:43
mveRichard Deeming29-Jan-21 0:43 
JokeRe: How to do an internet search for text that has the character ["]? Pin
Nelek29-Jan-21 1:05
protectorNelek29-Jan-21 1:05 
JokeRe: How to do an internet search for text that has the character ["]? Pin
Nelek29-Jan-21 1:06
protectorNelek29-Jan-21 1:06 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
obermd29-Jan-21 4:21
obermd29-Jan-21 4:21 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
theoldfool29-Jan-21 1:28
professionaltheoldfool29-Jan-21 1:28 
RantRe: How to do an internet search for text that has the character ["]? Pin
W Balboos, GHB29-Jan-21 2:07
W Balboos, GHB29-Jan-21 2:07 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
OriginalGriff28-Jan-21 23:55
mveOriginalGriff28-Jan-21 23:55 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
Nelek29-Jan-21 0:13
protectorNelek29-Jan-21 0:13 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
GenJerDan29-Jan-21 0:40
GenJerDan29-Jan-21 0:40 
GeneralRe: How to do an internet search for text that has the character ["]? Pin
OriginalGriff29-Jan-21 1:17
mveOriginalGriff29-Jan-21 1:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.