如何在 Visual Studio 扩展 DisplayName 中包含冒号
How to include a colon in a Visual Studio extension DisplayName
我想使用冒号 (:
) 作为扩展 DisplayName
的一部分。我修改了我的 .vsixmanifest 文件:
<DisplayName>Foo:Bar & Baz</DisplayName>
但是,在构建时我得到一个错误:
Error trying to read the VSIX manifest file "obj\x86\Debug\extension.vsixmanifest".
The given path's format is not supported.
docs 没有说明任何字符限制,只是 DisplayName
必须少于 50 个字符。
我什至尝试过对冒号进行编码,但我收到了相同的错误消息(如上)。
<DisplayName>Foo:Bar & Baz</DisplayName>
这附近有没有?
How to include a colon in a Visual Studio extension DisplayName
恐怕你得不到你想要的
冒号 是 vsixmanifest 文件中的非法字符,因此不能在其中使用。
建议
我们建议您可以使用 _
而不是 :
。
另外,如果你还想要这个功能,你可以在our User Voice Forum上推荐这个功能。
我想使用冒号 (:
) 作为扩展 DisplayName
的一部分。我修改了我的 .vsixmanifest 文件:
<DisplayName>Foo:Bar & Baz</DisplayName>
但是,在构建时我得到一个错误:
Error trying to read the VSIX manifest file "obj\x86\Debug\extension.vsixmanifest".
The given path's format is not supported.
docs 没有说明任何字符限制,只是 DisplayName
必须少于 50 个字符。
我什至尝试过对冒号进行编码,但我收到了相同的错误消息(如上)。
<DisplayName>Foo:Bar & Baz</DisplayName>
这附近有没有?
How to include a colon in a Visual Studio extension DisplayName
恐怕你得不到你想要的
冒号 是 vsixmanifest 文件中的非法字符,因此不能在其中使用。
建议
我们建议您可以使用 _
而不是 :
。
另外,如果你还想要这个功能,你可以在our User Voice Forum上推荐这个功能。