I created an ASP.NET Core Web Application in VS 2015. The Add unit tests checkbox was available for the ASP.NET 4.x templates, but when I selected ASP.NET 5 templates it was grayed out. I tried creating the project anyway with plans to add my own unit tests.
I added another project to the solution but I'm not able to link the two. When I right-click the references of the UnitTest project and hit Add Reference, I can see the original project as an option.
But when I check the box and hit OK, I get a dialog box that says, "A reference to 'PangolinWeb' could not be added. An assembly must have a 'dll' or 'exe' extension in order to be referenced."
Why can't I add an ASP.NET Core project as a reference? Is this the only way to make all of its classes and methods available to my UnitTest project?