I created a new project using a clean install of VS 2015 Enterprise RC1, and I'm trying to add the Nuget package for Mandrill , which is built against .NET 4.
When I create a project, I get a message from DNX Core 5.0 that the namespace cannot be found:
All packages are already installed and there is nothing to restore. NuGet package restore finished. 1>
Instead of adding as a global dependency, I tried to add it only to the dnx451 infrastructure in project.json with the same result.
"frameworks": { "dnx451": { "dependencies": { "Mandrill": "1.3.1" } }, "dnxcore50": { } },
Is it even possible to use .NET 4 packages with ASP.NET 5? If so, what is needed?
source share