Files
UnrealEngineUWP/Engine/Source/Runtime/NullInstallBundleManager/NullInstallBundleManager.build.cs
justin marcus ffd62e65f8 Update coopyright notices
#jira UE-69926
#rb trivial

#ROBOMERGE-OWNER: robert.manuszewski
#ROBOMERGE-AUTHOR: justin.marcus
#ROBOMERGE-SOURCE: CL 4970841 in //UE4/Main/...
#ROBOMERGE-BOT: CORE (Main -> Dev-Core)

[CL 5056514 by justin marcus in Dev-Core branch]
2019-02-18 19:30:54 -05:00

15 lines
305 B
C#

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