平安校园
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

37 行
703 B

  1. //
  2. using SafeCampus.Core.Utils;
  3. namespace SafeCampus.Core;
  4. /// <summary>
  5. /// AppStartup启动类
  6. /// </summary>
  7. [AppStartup(99)]
  8. public class Startup : AppStartup
  9. {
  10. public void ConfigureServices(IServiceCollection services)
  11. {
  12. services.AddComponent<LoggingConsoleComponent>();//启动控制台日志格式化组件
  13. services.AddComponent<LoggingFileComponent>();//启动日志写入文件组件
  14. // 配置雪花Id算法机器码
  15. YitIdHelper.SetIdGenerator(new IdGeneratorOptions
  16. {
  17. WorkerId = 1// 取值范围0~63,默认1
  18. });
  19. }
  20. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  21. {
  22. }
  23. }