I am starting to develop an ASP.NET Core MVC Web application with yeoman
generated project and ran dotnet restore
.
It gives me this error:
The folder '/home/hemal/DOTNET/MyFirstApp' does not contain a project to restore.
There is no project.json
file but new MyFirstApp.csproj
file is there.
How can resolve this?
dotnet -version
from root project folder, as it may be overridden byglobal.json
file. – Wildebeest