在 Visual Studio 的关于对话框中显示正确的扩展版本号

Showing the correct version number of an extension in the about dialog in Visual Studio

在为 Visual Studio 开发扩展时,您在 vsixmanifest 文件中指定扩展的版本号,如下所示:

<Metadata>
    <Identity ... Version="2.1.3" ... />

这将按预期在扩展模式中显示版本号 2.1.3。但是 关于 Microsoft Visual Studio 对话框中的扩展名称中的版本号未正确显示。此处示例:

这只是一个例子,与2.1.3版本号无关。但是我看到我构建的扩展也在该对话框的版本号中显示 1.0,即使我在 vsixmanifest 文件中指定了更高版本的字符串。

在哪里可以修改 关于 Microsoft Visual Studio 对话框中显示的版本号?

Help/About中显示的版本号(及其他信息)来自于你派生的AsyncPackage中的注册class:

[InstalledProductRegistration("#110", "#112", "2.5", IconResourceID = 400)] // Info on this package for Help/About