Jamie Gilbert
Jamie Gilbert

Reputation: 53

Move project from Visual Studio Code to Visual Studio 2015

I have created a project on OSX in Visual Studio Code (MVC Website template using yeoman) and added to source control (Git), however when I try to work on the project in Windows using Visual Studio 2015 I am unable to open the project as it has no solution file.

I assume that creating an entirely new project on Visual Studio 2015 and then copy pasting my project on top might work but if there is a better solution I would love to know!

Perhaps there is a way to make the solution file on the mac so it can be 'cross platform' instead of 'multi platform' ?

Upvotes: 4

Views: 2168

Answers (1)

Victor Hurdugaci
Victor Hurdugaci

Reputation: 28425

Unfortunately, there's no scaffolder for sln files.

You have to create a sln file by hand or by using Visual Studio.

Upvotes: 2

Related Questions