You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
publicIEnumerable<Assembly>CandidateAssemblies{get{if(_dependencyContext==null){// Use the entry assembly as the sole candidate.returnnew[]{_entryAssembly};}returnGetCandidateLibraries().SelectMany(l =>l.Assemblies).Select(Load);}}
GetCandidateLibraries only includes dependent assemblies (which for MVCSandbox only contains the MVC assemblies)
I believe the list of candidate assemblies should always contain the entry assembly plus optionally a set of referenced assemblies based on whether or not the DependencyContext is available.