2 writes to FullName
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\ModuleData.cs (2)
33
FullName
= assembly.FullName;
40
FullName
= fullName;
15 references to FullName
Microsoft.CodeAnalysis.Test.Utilities (15)
CompilationVerifier.cs (3)
165
var peFile = new PEFile(emitData.EmittedModule.Id.
FullName
, moduleMetadata.Module.PEReaderOpt);
310
var peFile = new PEFile(emitData.EmittedModule.Id.
FullName
, moduleMetadata.Module.PEReaderOpt);
973
fullNameSet.Add(moduleData.Id.
FullName
);
Metadata\ModuleData.cs (2)
46
return $"{
FullName
} - {Mvid}";
62
public string FullName => Id.
FullName
;
Platform\Desktop\RuntimeAssemblyManager.cs (7)
166
throw new Exception($"Two modules of name {assemblyData.Id.
FullName
} have different MVID");
201
_fullNameToAssemblyDataMap.Add(assemblyData.Id.
FullName
, assemblyData);
224
if (_fullNameToAssemblyDataMap.TryGetValue(id.
FullName
, out assemblyData))
239
fullMatch = _preloadedSet.Contains(id.SimpleName) || StringComparer.OrdinalIgnoreCase.Equals(id.
FullName
, assemblyData.Id.
FullName
);
257
throw new Exception($"Cannot get bytes for preloaded Assembly {data.Id.
FullName
}");
350
var assembly = GetAssembly(id.
FullName
, reflectionOnly: true);
Platform\Desktop\RuntimeModuleData.cs (3)
40
var fullName = info.GetString(nameof(Id.
FullName
));
48
info.AddValue(nameof(Id.
FullName
), Id.
FullName
);