You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb trivial #preflight 63ed6d967d2ec3d2fd6954b2 [CL 24247118 by Joe Kirchoff in ue5-main branch]
22 lines
709 B
C#
22 lines
709 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
/// <summary>
|
|
/// Description of a project build configuration provided during project generation by ProjectFile.
|
|
/// </summary>
|
|
/// <seealso cref="PlatformProjectGenerator.GetVisualStudioTargetsString"/>
|
|
public abstract class ProjectBuildConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Name of the build configuration as displayed in the IDE e.g. Debug_Client.
|
|
/// </summary>
|
|
public abstract string ConfigurationName { get; }
|
|
|
|
/// <summary>
|
|
/// Build command associated with this build configuration (as generated by classes derived from ProjectFile).
|
|
/// </summary>
|
|
public abstract string BuildCommand { get; }
|
|
}
|
|
}
|