3 overrides of GlobalAssemblyCache
System.Private.CoreLib (1)
src\System\Reflection\RuntimeAssembly.cs (1)
549
public override bool
GlobalAssemblyCache
=> false;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
206
public override bool
GlobalAssemblyCache
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
162
public sealed override bool
GlobalAssemblyCache
=> false;
4 references to GlobalAssemblyCache
Microsoft.Build.Tasks.CodeAnalysis.Sdk (1)
src\Compilers\Core\MSBuildTask\Utilities.cs (1)
154
if (assembly.
GlobalAssemblyCache
)
Microsoft.CodeAnalysis.Scripting (1)
Hosting\AssemblyLoader\DesktopAssemblyLoaderImpl.cs (1)
52
return new AssemblyAndLocation(assembly, assembly.Location, assembly.
GlobalAssemblyCache
);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
208
get { return UnderlyingAssembly.
GlobalAssemblyCache
; }
VBCSCompiler.UnitTests (1)
AnalyzerConsistencyCheckerTests.cs (1)
213
Assert.True(assemblyLoader.LoadFromPath(dllFile.Path).
GlobalAssemblyCache
);