Files
cabelitos af8179f9c7 PR #12445: Add new functionalities to Visual Studio workspace generator in UBT
#rnx
#jira UE-228593
#rb Ryan.Hummer

[CL 37402353 by cabelitos in 5.5 branch]
2024-10-23 15:05:04 -04:00

20 lines
459 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace UnrealBuildTool
{
internal class AvailableConfiguration
{
public HashSet<string> Configurations { get; set; } = new();
public HashSet<string> Platforms { get; set; } = new();
public string TargetPath { get; set; } = string.Empty;
public string ProjectPath { get; set; } = string.Empty;
public string TargetType { get; set; } = string.Empty;
}
}