Posts

Showing posts with the label ASP dot net project web deploy

Environment issues faced during an ASP dot net project web deploy

Image
Recently I got a chance to work on a ASP dot net project web deploy and come across below issues. After installing visual studio 2015 Update 3, I was getting below error while opening the solution. 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 <Import> declaration is correct, and that the file exist on disk.   To fix the above error I had to install Visual Studio 2015 Tools (Preview 2):  https://go.microsoft.com/fwlink/?LinkId=827546 Then had Windows 7 know issue which was failing package restore. I could resolve the package restore by disabling virtual box adapter as explained in below two links. https://github.com/dotnet/cli/issues/2524 https://github.com/dotnet/cli/issues/1732 After that I was getting 200+ compilation issue as dot net framework 4.6.2 was not present in my system. Even after installing dot net framework...