services.AddOptions<SysConfig>()
.Configure<IConfiguration>((options, configuration) => configuration.Bind(SysConfig.SectionName, options))
.Validate(options => options.Port is not default(int), $"{nameof(SysConfig.Port)} is not defined!")
services.AddOptions<SysConfig>()
.Configure<IConfiguration>((options, configuration) => configuration.Bind(SysConfig.SectionName, options))
.Validate(options => options.Port is not default(int), $"{nameof(SysConfig.Port)} is not defined!")