3 types derived from GlobalAssemblyCache
Microsoft.CodeAnalysis.Scripting (3)
src\roslyn\src\Compilers\Shared\GlobalAssemblyCacheHelpers\ClrGlobalAssemblyCache.cs (1)
28internal sealed class ClrGlobalAssemblyCache : GlobalAssemblyCache
src\roslyn\src\Compilers\Shared\GlobalAssemblyCacheHelpers\DotNetCoreGlobalAssemblyCache.cs (1)
20internal sealed class DotNetCoreGlobalAssemblyCache : GlobalAssemblyCache
src\roslyn\src\Compilers\Shared\GlobalAssemblyCacheHelpers\MonoGlobalAssemblyCache.cs (1)
23internal sealed class MonoGlobalAssemblyCache : GlobalAssemblyCache
7 references to GlobalAssemblyCache
Microsoft.CodeAnalysis.Features (3)
Completion\Providers\Scripting\GlobalAssemblyCacheCompletionHelper.cs (2)
19new(() => [.. GlobalAssemblyCache.Instance.GetAssemblySimpleNames()]); 61=> IOUtilities.PerformIO(() => GlobalAssemblyCache.Instance.GetAssemblyIdentities(partialName), []);
MetadataAsSource\DecompilationMetadataAsSourceFileProvider.cs (1)
256GlobalAssemblyCache.Instance.ResolvePartialName(fullAssemblyName, out assemblyLocation, preferredCulture: CultureInfo.CurrentCulture);
Microsoft.CodeAnalysis.Scripting (4)
src\roslyn\src\Compilers\Shared\GlobalAssemblyCacheHelpers\GacFileResolver.cs (2)
66architectures = GlobalAssemblyCache.CurrentArchitectures; 76GlobalAssemblyCache.Instance.ResolvePartialName(assemblyName, out path, Architectures, this.PreferredCulture);
src\roslyn\src\Compilers\Shared\GlobalAssemblyCacheHelpers\GlobalAssemblyCache.cs (2)
18internal static readonly GlobalAssemblyCache Instance = CreateInstance(); 20private static GlobalAssemblyCache CreateInstance()