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