Browse Source

Added DeviceTypes for CLI (#3329)

pull/3441/head
ttalty 2 years ago committed by GitHub
parent
commit
72a6bb6f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/Core/Enums/DeviceType.cs
  2. 3
      src/Core/Utilities/DeviceTypes.cs

8
src/Core/Enums/DeviceType.cs

@ -49,5 +49,11 @@ public enum DeviceType : byte @@ -49,5 +49,11 @@ public enum DeviceType : byte
[Display(Name = "SDK")]
SDK = 21,
[Display(Name = "Server")]
Server = 22
Server = 22,
[Display(Name = "Windows CLI")]
WindowsCLI = 23,
[Display(Name = "MacOs CLI")]
MacOsCLI = 24,
[Display(Name = "Linux CLI")]
LinuxCLI = 25
}

3
src/Core/Utilities/DeviceTypes.cs

@ -17,5 +17,8 @@ public static class DeviceTypes @@ -17,5 +17,8 @@ public static class DeviceTypes
DeviceType.MacOsDesktop,
DeviceType.WindowsDesktop,
DeviceType.UWP,
DeviceType.WindowsCLI,
DeviceType.MacOsCLI,
DeviceType.LinuxCLI,
};
}

Loading…
Cancel
Save