I've (My client) have a project which is being ported over to .net core, and thus the ninject dependency is being removed (as it doesn't support core yet).
I have some things in the project which call Kernal.Get<T>
of things that aren't bound in Ninject, yet it still finds them.
Am I correct in saying it can look things up without knowing about them? And will I have to recreate this functionality myself for .netcore?