2 instantiations of PluginManager
NuGet.Protocol (2)
Plugins\PluginManager.cs (2)
33private static Lazy<IPluginManager> _lazy = new Lazy<IPluginManager>(() => new PluginManager()); 45Lazy<IPluginManager> previous = System.Threading.Interlocked.Exchange(ref _lazy, new Lazy<IPluginManager>(() => new PluginManager()));
2 references to PluginManager
NuGet.Credentials (1)
DefaultCredentialServiceUtility.cs (1)
84var securePluginProviders = await new SecurePluginCredentialProviderBuilder(pluginManager: PluginManager.Instance, canShowDialog: true, logger: logger).BuildAllAsync();
NuGet.Protocol (1)
Providers\PluginResourceProvider.cs (1)
22public PluginResourceProvider() : this(PluginManager.Instance)