3 writes to Id
Microsoft.CodeAnalysis.Test.Utilities (3)
Metadata\ModuleData.cs (3)
67
this.
Id
= new ModuleDataId(netModuleName, netModuleName, GetMvid(image));
77
this.
Id
= new ModuleDataId(identity.Name, identity.GetDisplayName(), GetMvid(image));
87
this.
Id
= id;
14 references to Id
Microsoft.CodeAnalysis.Test.Utilities (14)
Compilation\IRuntimeEnvironment.cs (1)
221
fullNameSet.Add(moduleData.
Id
.FullName);
Metadata\ModuleData.cs (3)
61
public string SimpleName =>
Id
.SimpleName;
62
public string FullName =>
Id
.FullName;
63
public Guid Mvid =>
Id
.Mvid;
Platform\Desktop\DesktopRuntimeEnvironment.cs (5)
123
.GetMissing(allModules.Select(x => new RuntimeModuleDataId(x.
Id
)).ToList())
126
.Where(x => missingList.Contains(x.
Id
))
155
if (!manager.HasConflicts(modules.Select(x => new RuntimeModuleDataId(x.
Id
)).ToList()))
235
_emitData.RuntimeData = CreateAndInitializeRuntimeData(dependencies, _emitData.MainModule.
Id
);
365
var searchIds = emitData.AllModuleData.Select(x => new RuntimeModuleDataId(x.
Id
)).ToList();
Platform\Desktop\RuntimeAssemblyManager.cs (2)
34
internal ModuleDataId Id => Assembly != null ? new ModuleDataId(Assembly, Assembly.ManifestModule.ModuleVersionId) : ModuleData.
Id
;
167
if (TryGetMatchingByFullName(module.
Id
, out var assemblyData, out var fullMatch))
Platform\Desktop\RuntimeModuleData.cs (3)
65
var id = (RuntimeModuleDataId)info.GetValue(nameof(ModuleData.
Id
), typeof(RuntimeModuleDataId));
76
info.AddValue(nameof(ModuleData.
Id
), new RuntimeModuleDataId(Data.
Id
));