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