namespace XGame.Editor.Build
{
///
/// .NET API compatibility level.
///
public enum ApiCompatibilityLevel
{
///
/// 不设置
///
None = 0,
/////
///// .NET 4.6.
/////
//NET_4_6 = 3,
///
/// Profile that targets the .NET Standard 2.0.
///
NET_Standard_2_0 = 6
}
}