【问题标题】:Show NuGet package release notes显示 NuGet 包发行说明
【发布时间】:2023-03-31 13:30:02
【问题描述】:

nuspec reference 表示 releaseNotes 标签

v1.5 包的每个版本中所做更改的描述。此字段仅在选择 更新 选项卡并且软件包是对先前安装的软件包的更新时显示。它显示在通常显示描述的位置。

我创建了两个 nuspec 文件,都包含(当然有不同的version 标签)

<?xml version="1.0"?>
<package >
  <metadata>
    <id>TestReleaseNotes</id>
    <version>1.0</version>
    <authors>adrianm</authors>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>Description</description>
    <releaseNotes>Release notes</releaseNotes>
  </metadata>
  <files>
    <file src="Test.cs" target="content" />
  </files>
</package>

我在 VS2013 中安装了 1.0 并选择了更新选项卡,但我看不到发行说明。

我错过了什么?

【问题讨论】:

  • 对于 VS 2013 和旧版本的 Microsoft.ApplicationInsights 安装对我来说似乎没问题 NuGet 对话框显示一个单独的发行说明标签,其中包含来自 NuGet 包的发行说明文本。

标签: visual-studio-2013 nuget nuspec


【解决方案1】:

这是我自己发现的。

如果我从project 打开“管理 NuGet 包”对话框,则会显示发行说明。
但不是当我从solution 打开它时。

我自己的包和 nuget.org 的行为是相同的

【讨论】:

  • 我正在使用带有 NuGet 3.3 的 Visual Studio 2015。似乎无论我如何打开它:1)管理 NuGet 包...(用于项目),或 2)管理解决方案的 NuGet 包...,我没有看到发行说明。我花了更多时间试图追踪更新的发行说明,因此我从 NuGet 获得的任何生产力优势似乎都丢失了!例如,我目前正在尝试查看 Microsoft.ApplicationInsights 2.0.0.0 的发行说明,我可以看到描述!任何人都可以找到在 VS 2015 中查看发行说明的方法?
  • 2020年了,VS 2019还没有
  • 令人难以置信的是,包管理器如此重要的功能这么长时间不可用/损坏:/
【解决方案2】:

截至 2021 年 3 月,这似乎仍然是 Visual Studio 2019 中的一个问题。 我们使用 Azure 在内部发布了许多 nuget 包。包发行说明显示在 Azure UI 中,但不在 Visual Studio 中。但是,“描述”确实出现在 Visual Studio 中,因此我调整了描述以包含发行说明。这实际上来自 Directory.build.props 文件,但同样可以嵌入到项目文件中:

        <PackageReleaseNotes>
Release notes added to .nuspec file as <Release Notes> and also to end of Description
        </PackageReleaseNotes>
        <!-- Don't indent text, it makes it hard to read in the nuget package manager-->
        <Description>
Description:
This is the description of our internally produced nuget package

Release Notes:$(PackageReleaseNotes)
        </Description>

【讨论】:

  • 但是,当您第一次通过 GUI (VS2019/VS2022) 编辑描述时,占位符 $(PackageReleaseNotes) 会随着展开的文本的保存而消失。
【解决方案3】:

在 NuGet 存储库中跟踪了有关 VS2015 的此问题。

https://github.com/NuGet/Home/issues/1823

【讨论】:

    猜你喜欢
    • 2021-05-22
    • 1970-01-01
    • 2021-12-18
    • 2020-09-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多