'Couldn't find file in a cloned .Net application
I just cloned this ASP.Net project. I used the command line to create a new console (dotnet new console) and to run the application (dotnet run) and I was having this error. The application is working fine but it is not working fine on my systementer image description here.
Solution 1:[1]
Might because of the dependencies which are not downloaded. Try using the command dotnet restore command in console at the location of your project. Or reopen the project in Visual Studio so that it automatically downloads the missed dependencies.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Naveen Malla |
