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

12 lines
253 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace UnrealBuildTool
{
internal class AvailableTargetsConfigurations
{
public Dictionary<string, AvailableConfiguration> Targets { get; set; } = new();
}
}