I'm sure all I have to do to fix this is to manually update my project.json, but I think the project should be updated with the latest version of .NET Core and the dependencies.
I also get the following error on dotnet run
Can not find runtime target for framework '.NETCoreApp,Version=v1.1' compatible with one of the target runtimes: 'osx.10.11-x64'. Possible causes:
1. The project has not been restored or restore failed - run `dotnet restore`
2. The project does not list one of 'osx.10.11-x64' in the 'runtimes' section.
3. You may be trying to publish a library, which is not supported. Use `dotnet pack` to distribute libraries.
Commenting to say that I resolved this issue by removing the runtimes section of my project.json completely. Perhaps this should be noted in the README as a fix to this issue for OSX users.
When I clone the project and run
npm install
,bower install
,npm start
, and then open a new tab and rundotnet restore
, I get the following output:I'm sure all I have to do to fix this is to manually update my
project.json
, but I think the project should be updated with the latest version of .NET Core and the dependencies.I also get the following error on
dotnet run