2 writes to FullName
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\ModuleData.cs (2)
33
FullName
= assembly.FullName;
40
FullName
= fullName;
13 references to FullName
Microsoft.CodeAnalysis.Test.Utilities (13)
Compilation\IRuntimeEnvironment.cs (1)
221
fullNameSet.Add(moduleData.Id.
FullName
);
Metadata\ModuleData.cs (2)
46
return $"{
FullName
} - {Mvid}";
62
public string FullName => Id.
FullName
;
Platform\Desktop\RuntimeAssemblyManager.cs (7)
171
throw new Exception($"Two modules of name {assemblyData.Id.
FullName
} have different MVID");
206
_fullNameToAssemblyDataMap.Add(assemblyData.Id.
FullName
, assemblyData);
229
if (_fullNameToAssemblyDataMap.TryGetValue(id.
FullName
, out assemblyData))
244
fullMatch = _preloadedSet.Contains(id.SimpleName) || StringComparer.OrdinalIgnoreCase.Equals(id.
FullName
, assemblyData.Id.
FullName
);
262
throw new Exception($"Cannot get bytes for preloaded Assembly {data.Id.
FullName
}");
355
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
);