Base:
property
ContainingAssembly
Microsoft.CodeAnalysis.CSharp.Symbols.ModuleSymbol.ContainingAssembly
13 references to ContainingAssembly
Microsoft.CodeAnalysis.CSharp (13)
Emitter\EditAndContinue\EmitHelpers.cs (1)
65
var metadataAssembly = (PEAssemblySymbol)metadataDecoder.ModuleSymbol.
ContainingAssembly
;
Symbols\Metadata\PE\DynamicTypeDecoder.cs (1)
76
return TransformTypeInternal(metadataType, containingModule.
ContainingAssembly
,
Symbols\Metadata\PE\MetadataDecoder.cs (2)
56
: base(moduleSymbol.Module, (moduleSymbol.
ContainingAssembly
is PEAssemblySymbol) ? moduleSymbol.
ContainingAssembly
.Identity : null, SymbolFactory.Instance, moduleSymbol)
Symbols\Metadata\PE\PEGlobalNamespaceSymbol.cs (1)
70
return _moduleSymbol.
ContainingAssembly
;
Symbols\Metadata\PE\PEModuleSymbol.cs (2)
257
string corlibName =
ContainingAssembly
.CorLibrary.Name;
779
yield return
ContainingAssembly
.CreateMultipleForwardingErrorTypeSymbol(ref name, this, firstSymbol, secondSymbol);
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
343
moduleSymbol.
ContainingAssembly
.KeepLookingForDeclaredSpecialTypes &&
Symbols\Metadata\PE\PENestedNamespaceSymbol.cs (1)
114
return ContainingPEModule.
ContainingAssembly
;
Symbols\Metadata\PE\SymbolFactory.cs (4)
26
return ArrayTypeSymbol.CreateMDArray(moduleSymbol.
ContainingAssembly
, CreateType(elementType, customModifiers), rank, sizes, lowerBounds);
31
return moduleSymbol.
ContainingAssembly
.GetSpecialType(specialType);
71
return ArrayTypeSymbol.CreateSZArray(moduleSymbol.
ContainingAssembly
, CreateType(elementType, customModifiers));
103
ImmutableArray<AssemblySymbol> linkedAssemblies = moduleSymbol.
ContainingAssembly
.GetLinkedReferencedAssemblies();