My .net core application is getting amazing, and all the bros want to use it. I need to give them a fail safe way to get the project running, as well as a strategy for adding publish tasks down the road.
Right now, thanks to help I received in this question and this question, I run my application using the following command.
dotnet watch run --environment "Development"
I'd love it if I can get my devs using something more straightforward, maybe a custom task ala npm scripts:
dotnet run dev
I understand there is infrastructure to support this kind of thing via msbuild in a .csproj file, but the docs haven't worked out for me.