Robert Plummer
Robert Plummer

Reputation: 652

How can Visual Studio Code on OSX import sln/csproj and run?

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

Answers (2)

Nik4ant
Nik4ant

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

Jamie Gilbert
Jamie Gilbert

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

Related Questions