I have a Blazor hosted application with a client (webassembly), server and shared project (from the webassembly hosted template). It runs fine from Visual Studio, but I don't know how to run it from the command line. I've tried:
- dotnet run (from the solution, root project and server project directories)
- Running the exe built by Visual Studio from the netcoreapp3.1 directory under the server project
- Running the dll (using the dotnet command) from the netcoreapp3.1 directory under the server project
- Both 2 and 3 but from the publish directory
All of them fail. Does anyone know how I would run this from the command line? I want to push it to Cloud Foundry but cannot without knowing how to run it.