HotUpdateAssemblyManifest.cs 542 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. [CreateAssetMenu(fileName = "HotUpdateAssemblyManifest", menuName = "HybridCLR/HotUpdateAssemblyManifest")]
  5. public class HotUpdateAssemblyManifest : ScriptableObject
  6. {
  7. [Header("AOT 补充元数据dll列表")]
  8. public string[] AOTMetadataDlls = new string[] {
  9. "System.dll",
  10. "Unity.Core.dll",
  11. "Unity.ThirdParty.dll",
  12. "mscorlib.dll",
  13. "System.Core.dll",
  14. "Sirenix.Serialization.dll",
  15. "UniTask.dll"};
  16. }