配置Orchard Core 最新的包资源

添加预览包源

在本文中,我们将添加一个指向预览包的新包源。

与从主分支构建的NuGet上的代码相比,每次在dev分支上提交一些代码时都会构建预览包。

它们是最新的版本,但不是最稳定的,可以包含突破性的更改。

Orchard Core预览源添加到Visual Studio

为了能够使用VisualStudio中的预览包,请打开NuGet Package Manager下的“工具”菜单→ 包管理器设置。预览包资源地址url为https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json

 

使用NuGet.config添加Orchard Core预览源

您还可以使用NuGet.config文件添加包源:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />
    <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
    <add key="OrchardCorePreview" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" />
  </packageSources>
  <disabledPackageSources />
</configuration>

 

配置Orchard Core 最新的包资源

上一篇:接口自动化基础(六)allure和jenkins持续集成


下一篇:istio的tcp流量转移