AnalyzeAssembly.cs 936 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System.IO;
  2. namespace ET.Analyzer
  3. {
  4. public static class AnalyzeAssembly
  5. {
  6. private const string Core = "ET.Core";
  7. private const string Model = "ET.Model";
  8. private const string Hotfix = "ET.Hotfix";
  9. private const string ModelView = "ET.ModelView";
  10. private const string HotfixView = "ET.HotfixView";
  11. public static readonly string[] AllHotfix =
  12. [
  13. Hotfix, HotfixView
  14. ];
  15. public static readonly string[] AllModel =
  16. [
  17. Model, ModelView
  18. ];
  19. public static readonly string[] AllModelHotfix =
  20. [
  21. Model, Hotfix, ModelView, HotfixView
  22. ];
  23. public static readonly string[] All =
  24. [
  25. Core, Model, Hotfix, ModelView, HotfixView
  26. ];
  27. public static readonly string[] AllLogicModel =
  28. [
  29. Model
  30. ];
  31. }
  32. }