sesispla / docker-nginx-kestrel

A basic ASP.NET Core App, Dockerized and served with NGINX as proxy server.
MIT License
67 stars 26 forks source link

[Suggestion] New NET Core project format #2

Closed ghost closed 7 years ago

ghost commented 7 years ago

Hey, @sesispla ! Found this repo very useful, but not working.
dotnet restore
produces next error: MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file. ERROR: Service 'core-app' failed to build: The command 'dotnet restore' returned a non-zero code: 1

As I found, Microsoft changed project format at last NET Core release and project.json doesn't works anymore.

There is a simple way to fix this:
dotnet migrate

I've did it in my Fork

Best regards, Sergey

sesispla commented 7 years ago

Thank you @johnsnowdies I am going to pick it up and give it a try. This will definitely help fixing #3

sesispla commented 7 years ago

@johnsnowdies merged and updated to latest ASP.NET Core bits. Thx!