Search code examples
javascript.netpluginstfstfs-2015

where can i keep settings for my tfs extension


I'm trying to write a plugin for TFS 2015 (its important). I read a couple of manuals. the examples all turns out simply, but it is more difficult with a real plugin. my problem: where can i keep settings for my tfs extension?

I want to move requests addresses from the code in the some type settings(they will be the same for all users), so that during work, I could quickly change them without changing the plug-in code. but i cant find any solution of this problem.

i find this info: https://www.visualstudio.com/en-us/docs/integrate/extensions/develop/data-storage but it still keep settings in code.

I will be grateful for any information.


Solution

  • Not sure if I totally got your point. You just need to change your own code with the settings of your extension and publish to TFS. Then all user on the client side using your extension will automatically update the setting. Then don't need to manually change the code or update.


    Update

    Unfortunately, this is not support for now. You have to through the code to change the settings and rebuild, package the extension. Update/ install and test your extension.