简体   繁体   中英

How to add a description to a .vssettings file

我试图将描述标签添加到vssettings文件中,以便可以区分正在使用的各种vssettings文件。

If it's for personal use or you're okay with non-localised strings, simply add DisplayName and Description elements with the text in them:

<UserSettings>
    <DisplayName>My Settings</DisplayName>
    <Description>The description to display.</Description>
    ...

If you want localised strings or to load them from the resource file belonging to a package, there are ResourceID and ResourcePackage elements that may be specified. (This snippet comes from General.vssettings , which is included with Visual Studio 2010, though I've also tested it with resources in my own VSPackage.)

<UserSettings>
    <Description>
        <ResourceID>#14839</ResourceID>
        <ResourcePackage>{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}</ResourcePackage>
    </Description>
    <DisplayName>
        <ResourceID>#14838</ResourceID>
        <ResourcePackage>{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}</ResourcePackage>
    </DisplayName>
    ...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM