Where Visual Studio Extnesions DialogPage are stored? -


i'm developing visual studio extension visual studio 2017. in extension, have class inheriting dialogpage allow user define parameters.

i want see gets serialized when settings changed.

according options , options pages article in msdn data should stored in registry couldn't find it.

where settings stored visual studio options page?

according following blog, vs2017 support multiple instances of vs install on same machine. settings moved out of registry. each instance has own private registry can configured independently.

https://blogs.msdn.microsoft.com/heaths/2016/09/15/changes-to-visual-studio-15-setup/

you find private registry visual studio 2017 c:\users\username\appdata\local\microsoft\visualstudio\15.0_xxxexp ("xxx "could numbers, find folder suffix "exp").

and open settings file regedit.exe. detailed steps, please refer to: http://www.visualstudioextensibility.com/2016/11/23/some-implications-of-the-new-modular-setup-of-visual-studio-2017-for-vsx-developers/


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -