4 instantiations of ComInfo
Microsoft.Build.Tasks.Core (4)
ManifestUtil\ApplicationManifest.cs (2)
485clsidList.Add(key, new ComInfo(outputFileName, file.TargetPath, comClass.ClsId, null)); 500tlbidList.Add(key, new ComInfo(outputFileName, file.TargetPath, null, typeLib.TlbId));
ManifestUtil\ManifestReader.cs (2)
39comInfoList.Add(new ComInfo(manifestFileName, componentFileName, clsidNode.Value, null)); 45comInfoList.Add(new ComInfo(manifestFileName, componentFileName, null, tlbidNode.Value));
10 references to ComInfo
Microsoft.Build.Tasks.Core (10)
ManifestUtil\ApplicationManifest.cs (8)
433var clsidList = new Dictionary<string, ComInfo>(); 434var tlbidList = new Dictionary<string, ComInfo>(); 441ComInfo[] comInfoArray = ManifestReader.GetComInfo(assembly.ResolvedPath); 444foreach (ComInfo comInfo in comInfoArray) 449if (!clsidList.TryGetValue(key, out ComInfo info)) 461if (!tlbidList.TryGetValue(key, out ComInfo info)) 483if (!clsidList.TryGetValue(key, out ComInfo info)) 498if (!tlbidList.TryGetValue(key, out ComInfo info))
ManifestUtil\ManifestReader.cs (2)
23internal static ComInfo[] GetComInfo(string path) 29var comInfoList = new List<ComInfo>();