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