ATUL SHARMA
ATUL SHARMA

Reputation: 55

ASP.NET core project is not loading in Visual Studio 2015 Update 3 solution

I am trying to open a Solution file in Visual Studio 2015 Update 3. Though is created in another PC with same Visual Studio Version. I am getting this error -

My Project Directory\MyApp.UI\MyApp.UI.xproj : error : The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
My Project Directory\MyApp.UI\MyApp.UI.xproj

Any suggestions??

Upvotes: 2

Views: 4154

Answers (1)

Steve Kennedy
Steve Kennedy

Reputation: 5402

It seems that if you create a new .NET Core app you need to have this file locally available - C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Props. This file gets installed with VS 2015 Tooling for .NET Core. Meaning, in order to build ASP.NET CORE application on another workstation or server, you will need to install the VS 2015 Tooling which provides that file. Browse to https://www.microsoft.com/net/core and click on the blue link to download ".NET Core 1.0.1 - VS 2015 Tooling Preview 2" (or newer) After downloading the install, try again. Should be a fairly basic NEXT->NEXT->NEXT install process.

Upvotes: 1

Related Questions