In a test project I created a core project with a test class .
I configured the project in the project.json to compile as core and dnx like this:
{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
},
"dnx46": {
"imports": "dnx46"
}
}
}
now i create a .net 4.6.2 console project and add manually reference to the output form this folder bin\Debug\dnx46
now when i instantiate the class and call a method on it it works. It gets compiled and the runtime returns the currect result.
But the IDE seems to not resolve the types for intellisense
What am I missing?
This can also be found at this issue: https://github.com/aspnet/Tooling/issues/875