AnalyzeAssembly.cs 767 B

1234567891011121314151617181920212223
  1. namespace ET.Analyzer
  2. {
  3. public static class AnalyzeAssembly
  4. {
  5. public const string ServerModel = "Model";
  6. public const string SerVerHotfix = "Hotfix";
  7. public const string UnityModel = "Unity.Model";
  8. public const string UnityHotfix = "Unity.Hotfix";
  9. public const string UnityModelView = "Unity.ModelView";
  10. public const string UnityHotfixView = "Unity.HotfixView";
  11. public static readonly string[] AllHotfix = { SerVerHotfix, UnityHotfix, UnityHotfixView };
  12. public static readonly string[] AllModel = { ServerModel, UnityModel, UnityModelView };
  13. public static readonly string[] All = { ServerModel, SerVerHotfix, UnityModel, UnityHotfix, UnityModelView, UnityHotfixView };
  14. }
  15. }