#How do I run code with openmp on vs code without an sln file?
10 messages · Page 1 of 1 (latest)
When your question is answered use !solved or the button below to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
The question doesn't make sense. Solution files are an artifact of the Visual Studio build system. Visual Studio is an IDE.
Visual Studio Code is not an IDE. It's a text editor with a marketplace for extensions and plugins which add functionality.
Some of those extensions and plugins might allow you to run code, but VSC was not built with this functionality in mind.
So these extensions are usually pretty limited in what they can do.
You should instead learn how to use your chosen compiler from the terminal. Once you're comfortable with that, you can move on to more streamlined build tools like build scripts, makefiles or build system generators like CMake.