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