AnalyzeAssembly.cs 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. namespace ET.Analyzer
  2. {
  3. public static class AnalyzeAssembly
  4. {
  5. public const string AppsCore = "Core";
  6. public const string AppsModel = "Model";
  7. public const string AppsHotfix = "Hotfix";
  8. public const string UnityCore = "Unity.Core";
  9. public const string UnityModel = "Unity.Model";
  10. public const string UnityHotfix = "Unity.Hotfix";
  11. public const string UnityModelView = "Unity.ModelView";
  12. public const string UnityHotfixView = "Unity.HotfixView";
  13. public static readonly string[] AllHotfix = { AppsHotfix, UnityHotfix, UnityHotfixView };
  14. public static readonly string[] AllModel = { AppsModel, UnityModel, UnityModelView };
  15. public static readonly string[] AllModelHotfix = { AppsModel, AppsHotfix, UnityModel, UnityHotfix, UnityModelView, UnityHotfixView };
  16. public static readonly string[] All = { AppsCore, AppsModel, AppsHotfix, UnityCore, UnityModel, UnityHotfix, UnityModelView, UnityHotfixView };
  17. }
  18. }