Skip to content

Instantly share code, notes, and snippets.

@liamkf
liamkf / ActionGraph_FASTBuild_4.15.cs
Created March 20, 2017 17:39
Modifications to ActionGraph.cs to allow FASTBuild.cs to function.
[...]
/// <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)
{
@liamkf
liamkf / ActionGraph_FASTBuild_4.14.cs
Last active March 20, 2017 17:37
Modification to add to ActionGraph.cs to call FASTBuild
[...]
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