Jesper
Jesper

Reputation: 2814

Can't open project .NET Core in Visual Studio2015 Community

My buddy sent me a project we have been working on on his computer. We are both using Visual Studio Community 2015 Community. When i try to open the project on mine, it says it is incompatible and "The application is not installed." I doesn't seem like I'm getting any other information about what's causing the problem.

EDIT: I found a "Migration Report" that gives me the following error:

src\CarDealerV2\CarDealerV2.xproj: The application which this project type is based on was not found.

Upvotes: 0

Views: 805

Answers (1)

Panagiotis Kanavos
Panagiotis Kanavos

Reputation: 131180

Visual Studio 2015 doesn't include tooling for .NET Core. You need to install the .NET Core tools separately. The tools require Update 3 so make sure you install it before installing the tools.

The requirements and links can be found at the .NET Core site.

Upvotes: 1

Related Questions