25 references to TaskCompleteType
MSBuild (25)
OutOfProcTaskAppDomainWrapperBase.cs (7)
125
TaskCompleteType
.CrashedDuringInitialization,
318
TaskCompleteType
.CrashedDuringInitialization,
334
TaskCompleteType
.CrashedDuringInitialization,
347
return new OutOfProcTaskHostTaskResult(
TaskCompleteType
.Failure);
355
return new OutOfProcTaskHostTaskResult(
TaskCompleteType
.CrashedDuringExecution, e);
380
return new OutOfProcTaskHostTaskResult(success ?
TaskCompleteType
.Success :
TaskCompleteType
.Failure, finalParameterValues);
OutOfProcTaskHostNode.cs (4)
943
taskResult = new OutOfProcTaskHostTaskResult(
TaskCompleteType
.Failure);
947
taskResult = new OutOfProcTaskHostTaskResult(
TaskCompleteType
.CrashedDuringExecution, e);
958
taskResult ??= new OutOfProcTaskHostTaskResult(
TaskCompleteType
.Failure);
987
new OutOfProcTaskHostTaskResult(
TaskCompleteType
.CrashedAfterExecution, e),
OutOfProcTaskHostTaskResult.cs (12)
21
internal OutOfProcTaskHostTaskResult(
TaskCompleteType
result)
30
internal OutOfProcTaskHostTaskResult(
TaskCompleteType
result, IDictionary<string, Object> finalParams)
39
internal OutOfProcTaskHostTaskResult(
TaskCompleteType
result, Exception taskException)
48
internal OutOfProcTaskHostTaskResult(
TaskCompleteType
result, Exception taskException, string exceptionMessage, string[] exceptionMessageArgs)
57
internal OutOfProcTaskHostTaskResult(
TaskCompleteType
result, IDictionary<string, Object> finalParams, Exception taskException, string exceptionMessage, string[] exceptionMessageArgs)
61
if (result ==
TaskCompleteType
.CrashedDuringInitialization ||
62
result ==
TaskCompleteType
.CrashedDuringExecution ||
63
result ==
TaskCompleteType
.CrashedAfterExecution)
71
result ==
TaskCompleteType
.CrashedDuringInitialization ||
72
result ==
TaskCompleteType
.CrashedDuringExecution ||
73
result ==
TaskCompleteType
.CrashedAfterExecution,
92
public
TaskCompleteType
Result
TaskHostTaskComplete.cs (2)
62
private
TaskCompleteType
_taskResult;
148
public
TaskCompleteType
TaskResult