This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [...] | |
| /// <summary> | |
| /// Executes a list of actions. | |
| /// </summary> | |
| public static bool ExecuteActions(List<Action> ActionsToExecute, out string ExecutorName, string TargetInfoForTelemetry, bool bIsHotReload = false) | |
| { | |
| bool Result = true; | |
| ExecutorName = ""; | |
| if (ActionsToExecute.Count > 0) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [...] | |
| public static bool ExecuteActions(List<Action> ActionsToExecute, out string ExecutorName, string TargetInfoForTelemetry) | |
| { | |
| bool Result = true; | |
| bool bUsedXGE = false; | |
| ExecutorName = ""; | |
| if (ActionsToExecute.Count > 0) | |
| { | |
| DateTime StartTime = DateTime.UtcNow; | |
| // FASTBuild Change Start |