I have two projects: one project is built on .NET Core and the other one is built on normal .NET Framework 4.5.2.
I want to know how I can use my .NET Core cass library in my .NET Console Application.
Here is my project.json:
{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.6.0",
"NLog.Web.AspNetCore": "4.3.0",
"System.Xml.XmlSerializer": "4.0.11"
},
"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
},
"net452": {}
}
}
I tried to include the project as a normal reference. But after re-building the solution the Console Application still doesn't get the .NET Core library as a reference.