You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TouchSocket.Core
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 优化平台
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Flags]
|
|
|
|
|
|
public enum OptimizedPlatforms
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 无特殊优化
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
None=0,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 针对Unity2020及以下优化。
|
|
|
|
|
|
/// 一般来说,当在unity2020及以下版本,中执行il2cpp编译时,需要设置该值。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Unity = 1
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|