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