VS Code and starting from an existing VS2019 solution
Loading
VS Code and starting from an existing VS2019 solution
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Mar 13, 2026, 4:46 PM
Visual Studio Code doesn’t natively support Visual Studio solution files (
.sln).It can work with individual project files (
.csproj) using the C# extension and full solution support is available with the C# Dev Kit.With both extensions installed:
• VS Code can open and navigate
.slnfiles using Solution Explorer• Multiple projects load correctly as a solution
• IntelliSense, refactoring, debugging, and build support come from the C# extension
So the complete setup for solution support in VS Code is:
1. C# (ms-dotnettools.csharp)
2. C# Dev Kit (ms-dotnettools.csdevkit)