Base:
method
GetReferencedAssemblySymbols
Microsoft.CodeAnalysis.CSharp.Symbols.ModuleSymbol.GetReferencedAssemblySymbols()
10 references to GetReferencedAssemblySymbols
Microsoft.CodeAnalysis.CSharp (7)
Emitter\Model\PEModuleBuilder.cs (1)
805foreach (AssemblySymbol a in SourceModule.GetReferencedAssemblySymbols())
Emitter\NoPia\EmbeddedType.cs (1)
69ImmutableArray<AssemblySymbol> refs = TypeManager.ModuleBeingBuilt.SourceModule.GetReferencedAssemblySymbols();
Symbols\Metadata\PE\PEModuleSymbol.cs (1)
619foreach (AssemblySymbol assembly in this.GetReferencedAssemblySymbols())
Symbols\ReferenceManager.cs (1)
511assemblySymbol.SourceModule.GetReferencedAssemblySymbols(),
Symbols\Retargeting\RetargetingModuleSymbol.cs (1)
195ImmutableArray<AssemblySymbol> underlyingBoundReferences = _underlyingModule.GetReferencedAssemblySymbols();
Symbols\Source\SourceModuleSymbol.cs (2)
135foreach (AssemblySymbol asm in this.GetReferencedAssemblySymbols()) 313foreach (AssemblySymbol a in GetReferencedAssemblySymbols())
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Attributes\AttributeTests_Assembly.cs (1)
483Assert.Equal(2, ((PEModuleSymbol)m).GetReferencedAssemblySymbols().Length);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\CompilationCreationTests.cs (2)
121Assert.Same(cyclic2Mod.GetReferencedAssemblySymbols()[1], cyclic1Asm); 122Assert.Same(cyclic1Mod.GetReferencedAssemblySymbols()[1], cyclic2Asm);