// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool
{
///
/// Description of a project build configuration provided during project generation by ProjectFile.
///
///
public abstract class ProjectBuildConfiguration
{
///
/// Name of the build configuration as displayed in the IDE e.g. Debug_Client.
///
public abstract string ConfigurationName { get; }
///
/// Build command associated with this build configuration (as generated by classes derived from ProjectFile).
///
public abstract string BuildCommand { get; }
}
}