I know I can configure some settings in Visual Studio or Visual Studio Code to launch my asp .net core application in development mode. But I've had a horrible experience with all the build tools, and so far running from the command line is the only one working for me.
The big problem I have with the command line is getting it to run in Development mode. If I understand, this can only be done by typing set ASPNETCORE_ENVIRONMENT=Development
before dotnet watch run
or by setting system wide environment variables. There's gotta be another way, like through a file or something.
How can I run in Development mode from the command line, so I can include this in say a package.json
of an Aurelia project?