There is currently an issue with VS2017 docker projects breaking the dotnet CLI due to a missing SDK. Windows users can follow this step to work around. Linux/Mac users can copy the missing SDK from the aspnetcore-build
docker image.
dotnet restore RaidPlan.sln
cd src/RaidPlan.Host
dotnet run
The ASPNETCORE_ENVIRONMENT
environment variable must be set to Development
when running locally. This can be achieved most easily by exporting it in ~/.bashrc
or similar.