CDConfig.json 761 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. "CDConfig": {
  4. "Owner": "jasondom", // gitee用户名
  5. "Repo": "Admin.NET", // 仓库名
  6. "Branch": "next", // 分支名
  7. "AccessToken": "xxxxxxxxxxxxxxxxxxxxxxxxx", // gitee用户授权码
  8. "UpdateInterval": 10, // 最小更新间隔(分钟),-1不限制
  9. "BackupCount": 10, // 备份文件保留数量
  10. "BackendOutput": "D:\\Admin.NET", // 后端输出目录
  11. "Publish": { // 后端发布选项
  12. "Configuration": "Release", // 发布环境
  13. "TargetFramework": "net8.0", // 发布.NET版本
  14. "RuntimeIdentifier": "linux-x64" // 运行环境
  15. },
  16. "ExcludeFiles": ["Configuration\\Database.json"] // 排除文件
  17. }
  18. }