1 instantiation of AssemblyResolveEventArgs
Microsoft.TestPlatform.PlatformAbstractions (1)
netcore\Runtime\PlatformAssemblyResolver.cs (1)
74return eventArgs is not AssemblyName args ? null : AssemblyResolve?.Invoke(this, new AssemblyResolveEventArgs(args.Name, requestingAssembly: null));
5 references to AssemblyResolveEventArgs
Microsoft.TestPlatform.PlatformAbstractions (3)
Interfaces\Runtime\IAssemblyResolver.cs (3)
17public delegate Assembly? AssemblyResolveEventHandler(object? sender, AssemblyResolveEventArgs? args); 36/// Initializes a new instance of the <see cref="AssemblyResolveEventArgs"/> class. 46/// Initializes a new instance of the <see cref="AssemblyResolveEventArgs"/> class.
Microsoft.VisualStudio.TestPlatform.Common (2)
ExtensionFramework\TestPluginCache.cs (1)
492private Assembly? CurrentDomainAssemblyResolve(object? sender, AssemblyResolveEventArgs? args)
Utilities\AssemblyResolver.cs (1)
83private Assembly? OnResolve(object? sender, AssemblyResolveEventArgs? args)