4 instantiations of ComInfo
Microsoft.Build.Tasks.Core (4)
ManifestUtil\ApplicationManifest.cs (2)
486
clsidList.Add(key, new
ComInfo
(outputFileName, file.TargetPath, comClass.ClsId, null));
501
tlbidList.Add(key, new
ComInfo
(outputFileName, file.TargetPath, null, typeLib.TlbId));
ManifestUtil\ManifestReader.cs (2)
39
comInfoList.Add(new
ComInfo
(manifestFileName, componentFileName, clsidNode.Value, null));
45
comInfoList.Add(new
ComInfo
(manifestFileName, componentFileName, null, tlbidNode.Value));
10 references to ComInfo
Microsoft.Build.Tasks.Core (10)
ManifestUtil\ApplicationManifest.cs (8)
434
var clsidList = new Dictionary<string,
ComInfo
>();
435
var tlbidList = new Dictionary<string,
ComInfo
>();
442
ComInfo
[] comInfoArray = ManifestReader.GetComInfo(assembly.ResolvedPath);
445
foreach (
ComInfo
comInfo in comInfoArray)
450
if (!clsidList.TryGetValue(key, out
ComInfo
info))
462
if (!tlbidList.TryGetValue(key, out
ComInfo
info))
484
if (!clsidList.TryGetValue(key, out
ComInfo
info))
499
if (!tlbidList.TryGetValue(key, out
ComInfo
info))
ManifestUtil\ManifestReader.cs (2)
23
internal static
ComInfo
[] GetComInfo(string path)
29
var comInfoList = new List<
ComInfo
>();