4 instantiations of ComInfo
Microsoft.Build.Tasks.Core (4)
ManifestUtil\ApplicationManifest.cs (2)
486clsidList.Add(key, new ComInfo(outputFileName, file.TargetPath, comClass.ClsId, null)); 501tlbidList.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)
434var clsidList = new Dictionary<string, ComInfo>(); 435var tlbidList = new Dictionary<string, ComInfo>(); 442ComInfo[] comInfoArray = ManifestReader.GetComInfo(assembly.ResolvedPath); 445foreach (ComInfo comInfo in comInfoArray) 450if (!clsidList.TryGetValue(key, out ComInfo info)) 462if (!tlbidList.TryGetValue(key, out ComInfo info)) 484if (!clsidList.TryGetValue(key, out ComInfo info)) 499if (!tlbidList.TryGetValue(key, out ComInfo info))
ManifestUtil\ManifestReader.cs (2)
23internal static ComInfo[] GetComInfo(string path) 29var comInfoList = new List<ComInfo>();