I would like to list all the paths where the Runtime is going to search for the assemblies that are needed to be loaded. The idea is to explicit all the probes that will be tried, according to How the runtime locates assemblies, maybe in the right order they are tried.
I have seen that in .Net Core it exists an AssemblyLoadContext.Default
property that maybe could give me that info, but I want to get it in .NET Framework 4.8.
Finally, I don’t know if it is Application-specific or Assembly-specific, but I think it would be of use in any case although the Assembly-specific case seems more interesting.