Implemented interface member:
property
HostObject
Microsoft.Build.Framework.ITask.HostObject
10 references to HostObject
Microsoft.Build.Tasks.CodeAnalysis (8)
Csc.cs (2)
227if (HostObject is ICscHostObject csHost) 231else if (HostObject != null)
Vbc.cs (6)
525if (this.HostObject is IVbcHostObject vbHost) 529else if (this.HostObject != null) 1016if (this.HostObject != null) 1027if (HostObject is IVbcHostObject hostObjectCOM) 1102Debug.Assert(this.HostObject != null, "We should not be here if the host object has not been set."); 1104IVbcHostObject? vbcHostObject = this.HostObject as IVbcHostObject;
PresentationBuildTasks (2)
MS\Internal\Tasks\TaskFileService.cs (2)
410if (_buildTask != null && _buildTask.HostObject != null) 412_hostFileManager = _buildTask.HostObject as IVsMSBuildTaskFileManager;