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.
 
 
 
 
 
 

33 lines
1023 B

namespace ET.Analyzer
{
public static class AnalyzeAssembly
{
public const string ServerModel = "Server.Model";
public const string SerVerHotfix = "Server.Hotfix";
public const string UnityModel = "Unity.Model";
public const string UnityHotfix = "Unity.Hotfix";
public const string UnityModelView = "Unity.ModelView";
public const string UnityHotfixView = "Unity.HotfixView";
public const string RobotModel = "Robot.Model";
public const string RobotHotfix = "Robot.Hotfix";
public static readonly string[] AllHotfix = new string[] {SerVerHotfix,UnityHotfix,UnityHotfixView,RobotHotfix};
public static readonly string[] AllModel = new string[] { ServerModel, UnityModel, UnityModelView, RobotModel };
public static readonly string[] All = new string[]
{
ServerModel, SerVerHotfix, UnityModel, UnityHotfix,
UnityModelView, UnityHotfixView, RobotModel, RobotHotfix
};
}
}