-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have 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
Making the project creation and use more intuitive #6587
Comments
A project means different things in different contexts. In Visual Studio IDE, a project usually refers to a An IDE is helpful for users but also hides many things behind the scenes. I worked many years using Visual Studio IDE without knowing anything about In any case, I made a post on Stack Overflow about how one can use VSCode coming from Visual Studio background on Windows or a Netbeans background in linux. https://stackoverflow.com/a/65015872/492307 Hope that helps. |
@nav9 We need more info about you're looking for. What OS and compiler and build system do you intend to use? Did you see the tutorial docs at https://code.visualstudio.com/docs/cpp/config-msvc, https://code.visualstudio.com/docs/cpp/config-wsl, etc.? VS Code doesn't really have "projects". You're expected to install whatever compiler and build systems you need yourself since those are available externally. However, if you install the CMake Tools extension (and a compiler), open an empty folder, run CMake: Quick Start and follow the various popup prompts, then it'll create a basic CMakeLists.txt for building, a main.cpp, and then you can do CMake: Debug, which is sort of a like a "project". See If you don't want to use CMake, you could use tasks.json to build (e.g. Build and Debug Active file). |
Thank you Sean. Well, if the IDE and extensions are designed to be as such, then there is nothing more for me to say. I apologize for taking up your time. |
For what it's worth, the VS Code team is working on improvements to the Welcome screen which provides an opportunity for us to explore defining some "getting started" type tasks (e.g. create a C++ project). While it's true we don't try to be an IDE by packaging compilers and such together, I think there are some things we can do to make the out-of-box experience nicer for people. Thank you for your feedback. |
Type: General
Hi. This is an offshoot of this feature request microsoft/vscode#111339 which they requested me to post here. It's basically about making the project creation and use a more intuitive process.
The text was updated successfully, but these errors were encountered: