Migrating Asp.Net 5 rc1 to Asp.Net Core 1.0.0
Net Core 1.0.0 has been released some time ago and is here to stay. Maybe it’s time to move “old” dnx projects forward and switch to dotnet? Because, as someone avesome said: new is always better!
Net Core 1.0.0 has been released some time ago and is here to stay. Maybe it’s time to move “old” dnx projects forward and switch to dotnet? Because, as someone avesome said: new is always better!
If you want to share some common code between aspnet5 and regular csproj projects, you basically have three options:
dnu wrap to wrap existing csproj into aspnet5 project.jsonproject.json for aspnet5 and a csproj for regular .netThe last option is the most error-prone and harder to maintain, so I will just ignore it.
Today I ran into a problem with starting my AspNet5 app. (for the record, I’m using aspnet version 1.0.0-beta8) This is what happened: