visual-studio-2013 - 显示nuget软件包发行说明

标签 visual-studio-2013 nuget nuspec

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,并选择了“更新”选项卡,但看不到发行说明。


我想念什么?

最佳答案

我自己发现了这个。

如果从project打开“管理NuGet软件包”对话框,则会显示发行说明。

但是当我从solution打开它时却没有。

我自己的软件包以及nuget.org的行为都相同

关于visual-studio-2013 - 显示nuget软件包发行说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30612105/

相关文章:

c++ - VS2013 : How to disable warnings for included header files outside of the project

c++ - IntelliSense:类型为 "const char *const []"的成员不能具有类内初始化程序

nuget - VS2015 - 'NuGetPackage' 包未正确加载

Nuget 列表包错误

visual-studio - Nuget包管理器在VS2019中不显示包信息

c++ - videowriter 功能不使用 opencv-3.0.0 保存文件

c++ - 我在Visual Studio 2013中使用SDL 2.0.1时遇到LNK2019错误

.net - MSBuild 15 NuGet 恢复和构建

c# - NuGet:在项目中将包依赖项显式列出为包引用,以便可以卸载它们

nuget 规范依赖项,获取最新版本?