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

环境准备

  1. 下载 BaGet安装包
  2. 下载 aspnetcore-runtime
  3. 下载 dotnet-runtime

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

  1. 解压BaGet.zip
  2. 打开cmd命令行,输入dotnet BaGet.dll即可运行

以服务的方式运行

  1. 使用nssm进行安装,点击查看具体操作方法
  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或者域名进行修改。

使用浏览器打开Nuget管理页面

通过浏览器,输入我们配置的Url http://192.168.1.221:5000/,打开即可。

微信公众号:

承哥技术交流小作坊

欢迎转载分享,如若转载,请标注署名。


本文会经常更新,请阅读原文: https://huchengv5.gitee.io//post/NET-%E4%BD%BF%E7%94%A8BaGet%E5%BF%AB%E9%80%9F%E6%90%AD%E5%BB%BAnuget%E6%9C%8D%E5%8A%A1.html ,以避免陈旧错误知识的误导,同时有更好的阅读体验。

知识共享许可协议 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名胡承(包含链接: https://huchengv5.gitee.io/ ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系