Knagis/CommonMark.NET

DNX Core 5.0 reference not found on solution open

Closed this issue · 1 comments

AIA.

I pulled and opened CommonMark.NET in VS 2015 Community on Windows 8.1, and the CommonMark.NETCore project is missing its references related to DNX Core 5.0, and is therefore unbuildable for me.

commonmarkissues

A little not-that-helpful googling suggests DNX Core is a platform-neutral-ish subset of the .NET runtime, but most of the hits for searching it and "install" (that I found) seem to suggest its ASP.NET related. ?? The only DNX related open issue in CommonMark now is this one, which is unrelated, and there are no closed that seem related either.

What do I need to do to get this CommonMark prereq configured correctly?

It should be enough to run these commands in the command line:

dnvm install latest -r coreclr -a x86 -NoNative
dnvm install latest -r clr -a x86 -NoNative
dnu restore  # or dnu restore --unlock

The first ones install the DNX runtime (only the coreclr should be needed but who knows with DNX) the last one should restore any dependencies.

I am open to proposals on how to make it easier to use the coreclr project.