-3

Where can I find/see the list of avaliable Global Variables of VisualStudio that can be used in a designer file such as $rootnamespace$ ?

Pseudonym
  • 2,052
  • 2
  • 17
  • 38
ElektroStudios
  • 19,105
  • 33
  • 200
  • 417

1 Answers1

2

This documentation article has a few of them listed.
But to get all of them, you can implement your own wizard, and then in the IWizard.RunStarted you'll receive those parameters with their respective values in the replacementsDictionary argument, then you can view them in the debug mode or save to a file.

void RunStarted(
    Object automationObject,  
    Dictionary<string, string> replacementsDictionary,
    WizardRunKind runKind,  
    Object[] customParams  
)
Yurii
  • 4,811
  • 7
  • 32
  • 41