We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 828751f commit b4b2e94Copy full SHA for b4b2e94
1 file changed
GameFrameX.StartUp/Options/LauncherOptions.cs
@@ -149,11 +149,13 @@ public sealed class LauncherOptions
149
/// <summary>
150
/// 语言
151
/// </summary>
152
+ [Option(nameof(Language), HelpText = "语言")]
153
public string Language { get; set; }
154
155
156
/// 数据中心
157
158
+ [Option(nameof(DataCenter), HelpText = "数据中心")]
159
public string DataCenter { get; set; }
160
161
@@ -190,7 +192,7 @@ public sealed class LauncherOptions
190
192
/// 检查APM监控端口
191
193
194
/// <exception cref="ArgumentOutOfRangeException"></exception>
- public void CheckAPMPort()
195
+ public void CheckApmPort()
196
{
197
if (APMPort <= 10000 || APMPort >= ushort.MaxValue)
198
0 commit comments