Reputation: 652
Visual Studio Code seems like it would be a very nice tool, but right out of the gate it seemingly cannot read any configuration that would make it part of the Visual Studio family. How can I import my sln/csproj files so that Code knows how to understand them?
Upvotes: 9
Views: 15002
Reputation: 11
You can open it, using vscode-solution-explorer link for more info
(P.s. Not everything works as smoothly as we would like, but it's still better than nothing)
Upvotes: 0
Reputation: 228
Visual Studio Code isn't designed to work with sln/csproj files unfortunately (or fortunately depending on how you look at it).
In order to use your project created in Windows create a .NET Core application and use 'Portable Class Libraries' instead of standard class libraries then Open Folder in Visual Studio Code.
Upvotes: 9