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
* Fix a bug when SkipUnresolved=false. If TryResolve is called on a missing assembly, any subsequent Resolve calls for the same assembly will not result in an error. This is because there was a single unresolved assembly cache and once an assembly was in the list, no further errors would be reported. To fix this, I introduced a second cache. One for probing and one for not probing.
* I don't think letting these caches be null is worth the complexity it adds. Make the caches readonly.
* Open up Resolve for overriding. We need a way to hook in to the Resolve calls when a code path calls `Mono.Cecil.IAssemblyResolver.Resolve`
0 commit comments