6 writes to Action
Microsoft.Build (6)
BackEnd\Components\Scheduler\ScheduleResponse.cs (6)
103
Action
= type;
111
Action
= ScheduleActionType.CreateNode;
121
Action
= ScheduleActionType.SubmissionComplete;
130
Action
= ScheduleActionType.CircularDependency;
144
Action
= sendConfiguration ? ScheduleActionType.ScheduleWithConfiguration : ScheduleActionType.Schedule;
156
Action
= (unblocker.Result == null) ? ScheduleActionType.ResumeExecution : ScheduleActionType.ReportResults;
12 references to Action
Microsoft.Build (12)
BackEnd\BuildManager\BuildManager.cs (3)
2886
switch (response.
Action
)
2930
if (response.
Action
== ScheduleActionType.ScheduleWithConfiguration)
2948
ErrorUtilities.ThrowInternalError($"Scheduling action {response.
Action
} not handled.");
BackEnd\Components\Scheduler\Scheduler.cs (1)
1924
if (response.
Action
== ScheduleActionType.SubmissionComplete)
BackEnd\Components\Scheduler\ScheduleResponse.cs (8)
234
switch (
Action
)
238
return $"Act: {
Action
} Node: {NodeId} Request: {Unblocker.BlockedRequestId}";
241
return $"Act: {
Action
} Node: {NodeId} Request: {BuildRequest.GlobalRequestId} Parent {BuildRequest.ParentGlobalRequestId}";
244
return $"Act: {
Action
} Node: {NodeId} Request: {BuildRequest.GlobalRequestId} Parent {BuildRequest.ParentGlobalRequestId} Configuration: {BuildRequest.ConfigurationId}";
247
return $"Act: {
Action
} Node: {NodeId} Request: {BuildRequest.GlobalRequestId} Parent {BuildRequest.ParentGlobalRequestId} Configuration: {BuildRequest.ConfigurationId}";
250
return $"Act: {
Action
} Submission: {BuildResult.SubmissionId}";
253
return $"Act: {
Action
} Count: {NumberOfNodesToCreate}";
257
return $"Act: {
Action
}";