4 instantiations of ComInfo
Microsoft.Build.Tasks.Core (4)
ManifestUtil\ApplicationManifest.cs (2)
485
clsidList.Add(key, new
ComInfo
(outputFileName, file.TargetPath, comClass.ClsId, null));
500
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)
433
var clsidList = new Dictionary<string,
ComInfo
>();
434
var tlbidList = new Dictionary<string,
ComInfo
>();
441
ComInfo
[] comInfoArray = ManifestReader.GetComInfo(assembly.ResolvedPath);
444
foreach (
ComInfo
comInfo in comInfoArray)
449
if (!clsidList.TryGetValue(key, out
ComInfo
info))
461
if (!tlbidList.TryGetValue(key, out
ComInfo
info))
483
if (!clsidList.TryGetValue(key, out
ComInfo
info))
498
if (!tlbidList.TryGetValue(key, out
ComInfo
info))
ManifestUtil\ManifestReader.cs (2)
23
internal static
ComInfo
[] GetComInfo(string path)
29
var comInfoList = new List<
ComInfo
>();