当前位置: 首页 > article >正文

使用BaGet快速搭建nuget服务

BaGet是基于 asp.net core编写的一个轻量级的 nuget管理服务,安装部署非常简单。

* Nuget版本号规范:https://learn.microsoft.com/zh-cn/nuget/concepts/package-versioning。

环境准备

  1. 下载 BaGet安装包。

    https://loic-sharma.github.io/BaGet/

  2. 下载 aspnetcore-runtime。

    https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/runtime-aspnetcore-3.1.32-windows-x64-installer

  3. 下载 dotnet-runtime。

    https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/runtime-3.1.32-windows-x64-installer

命令终端运行(自我寄宿)

  1. 解压 BaGet.zip

  2. 打开 cmd命令行,输入 dotnetBaGet.dll即可运行

以服务的方式运行

  1. 使用nssm进行安装,点击查看具体操作方法 (推荐)。

    https://blog.csdn.net/liyou123456789/article/details/123094277)

  2. 通过windows任务计划

相关配置

找到BaGet目录下的 appsettings.json配置文件。


{
  "ApiKey": "",
  //开启硬删除
  "PackageDeletionBehavior": "HardDelete",
  "AllowPackageOverwrites": true,

  "Database": {
    "Type": "Sqlite",
    "ConnectionString": "Data Source=baget.db"
  },

  "Storage": {
    "Type": "FileSystem",
    "Path": ""
  },

  "Search": {
    "Type": "Database"
  },

  "Mirror": {
    "Enabled": false,
    // Uncomment this to use the NuGet v2 protocol
    //"Legacy": true,
    //用于配置到visual studio中
    "PackageSource": "https://api.nuget.org/v3/index.json"
  },

  // Uncomment this to configure BaGet to listen to port 8080.
  //如果需要配置为Https,
  //"Https": {
  //      "Url": "https://*:5004",
  //      "Certificate": {
  //        "Path": "<path to .pfx file>",              (.pfx文件路径)
  //        "Password": "<certificate password>"          (证书密码)
  //          }
  //      }
  // See: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/kestrel?view=aspnetcore-3.1#listenoptionsusehttps
  
  "Kestrel": {
    "Endpoints": {
      "Http": {
        "Url": "http://192.168.1.221:5000"
      }
    }
  },

  "Logging": {
    "IncludeScopes": false,
    "Debug": {
      "LogLevel": {
        "Default": "Warning"
      }
    },
    "Console": {
      "LogLevel": {
        "Microsoft.Hosting.Lifetime": "Information",
        "Default": "Warning"
      }
    }
  }
}

配置Visual Studio中的Nuget配置

在Visual Studio 包管理器中,添加http://192.168.1.221:5000/v3/index.json 这样子的链接。IP地址可以根据实际部署的`IP`或者`域名`进行修改。


http://www.kler.cn/a/385141.html

相关文章:

  • 175页PPTBCG某企业健康智能制造与供应链战略规划建议书
  • 归并排序算法
  • 核心数据类型转换
  • springboot 传统应用程序,适配云原生改造
  • 实现 Nuxt3 预览PDF文件
  • 浅谈QT用法
  • SQL,力扣题目1225,报告系统状态的连续日期【窗口函数】
  • 数据库Redis篇
  • 数学建模学习(135):使用Python基于WSM、WPM、WASPAS的多准则决策分析
  • 第10章 多表查询
  • DiskGenius工具扩容Mac OS X Apple APFS分区
  • 高效管理iPhone存储:苹果手机怎么删除相似照片
  • 【论文复现】MSA+抑郁症模型总结(二)
  • 使用最新版的wvp和ZLMediaKit搭建Gb28181测试服务器
  • Spring Boot中集成MyBatis操作数据库详细教程
  • ARXML汽车可扩展标记性语言规范讲解
  • JavaScript 实现文本转语音功能
  • 倒反天罡?程序员没有被AI替代,却间接用AI替代了产品经理
  • C++_判断文件是否存在_access函数
  • Redis - Set 集合
  • Vue项目中点击按钮后浏览器屏幕变黑,再次点击恢复的解决方法
  • Vue 3 的 全局状态管理
  • Git Bash 常用命令
  • uniapp项目 存储数据到手机本地
  • 离线安装nvidia docker2插件
  • golang通用后台管理系统06(用户菜单树信息)