Join GitHub today
- Visual Studio Code For Linux
- Download Visual Studio Code For Windows
- Configure Launch.json Visual Studio Code For Mac C++ Download
- Visual Studio Code For Chromebook
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Visual Studio Code For Linux
The tasks.vs.json and launch.vs.json files are created by Visual Studio on an as-needed basis when you choose either Configure Tasks or Debug and Launch Settings on a. Cannot display JSON file created and saved in Visual Studio Code. This is a bug in VS Code. If you are running into it, rather than setting the language of the file, save the file with the.json extension, and VS Code will detect the language and correctly display the file.
Download Visual Studio Code For Windows
Sign upHave a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
commented Sep 1, 2016
Hi CPP team, What I did is I just create a .cpp file, then I click the debugger icon, but it keeps asking me to configure the launch.json. I have no idea how to do it. Normally I just g++ the file and then ./ the out file, so what I need to do with the visual studio code? The error is: launch: program 'enter program name, for example /Users/bill.... What I need to replace the workspaceRoot? my file located here : Thank you so much, here is the json file. |
commented Sep 1, 2016
Hi @billchenxi, VsCode does not automatically build your project in the way that Visual Studio does. It is designed as a light-weight editor with some debugging features. It isn't a full IDE. You will have to either compile your code using the command-line, or you can set up a tasks.json to do the compilation step for you. An example is in our documentation: After that, you can set up the 'program' component to be the output of your compilation. For example ${workspaceRoot}/a.out |
commented Oct 20, 2017 • edited
edited
Configure Launch.json Visual Studio Code For Mac C++ Download
I am getting Same error even after correcting what you said.. |
Visual Studio Code For Chromebook
commented Oct 23, 2017
@heyAyushh You need to enter the name of the binary that you compiled in the string that has 'enter program name'. |