Files
UnrealEngineUWP/Engine/Source/Developer/FileUtilities/FileUtilities.Build.cs
anthony bills 09b5d6ff05 Move FZipArchiveWriter so it can be used by other modules.
(Re-add the correct files for 4859558 and fix unity build error.)

#rb david.harvey
[FYI] luke.thatcher

#ROBOMERGE-OWNER: robert.manuszewski
#ROBOMERGE-AUTHOR: anthony.bills
#ROBOMERGE-SOURCE: CL 4859806 via CL 4864758 via CL 4864879
#ROBOMERGE-BOT: CORE (Main -> Dev-Core)

[CL 4932201 by anthony bills in Dev-Core branch]
2019-02-07 09:16:52 -05:00

12 lines
270 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class FileUtilities : ModuleRules
{
public FileUtilities(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(new string[] { "Core"});
}
}