Files
UnrealEngineUWP/Engine/Source/Developer/Virtualization/Virtualization.Build.cs
paul chipchase 63948c5af4 Remove the FHttpBackend
#rb Per.Larsson
#jira UE-163016
#rnx
#preflight

- The backend is no longer used as we access horde storage via the ddc backend.

[CL 21862840 by paul chipchase in ue5-main branch]
2022-09-07 17:15:30 -04:00

23 lines
412 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class Virtualization : ModuleRules
{
public Virtualization(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"ApplicationCore",
"DerivedDataCache",
"MessageLog",
"Projects",
"SourceControl"
});
}
}