when using JustMock Free in a net 5.0 app. I am getting an Ninject exception that IAssemblyNameRetriever could not be found. Looking at the code on github,
the NETCORE compile constant removes the line
AddComponent<IAssemblyNameRetriever, AssemblyNameRetriever>();
from StandardKernel.cs
however, CompiledModuleLoaderPlugin uses IAssemblyNameRetriever in it's constructor and
AddComponent<IModuleLoaderPlugin, CompiledModuleLoaderPlugin>();
is still included in the NETCORE version.