Couldn't find a project to run. Ensure a project exists in D:\home\site\wwwroot
Couldn't find a project to run. Ensure a project exists in D:\home\site\wwwroot
Couldn't find a project to run. Ensure a project exists in D:\home\site\wwwroot
Re: Couldn't find a project to run. Ensure a project exists in D:\home\site\wwwroot
From the [docs](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-run?tabs=netcore2x)
The dotnet run command is used in the context of projects, not built
assemblies. If you're trying to run a framework-dependent application
DLL instead, you must use dotnet without a command.
So try and run it like this
```
dotnet myproject.dll
```
The dotnet run command is used in the context of projects, not built
assemblies. If you're trying to run a framework-dependent application
DLL instead, you must use dotnet without a command.
So try and run it like this
```
dotnet myproject.dll
```