Where can I find/see the list of avaliable Global Variables of VisualStudio that can be used in a designer file such as $rootnamespace$
?
Asked
Active
Viewed 183 times
-3

Pseudonym
- 2,052
- 2
- 17
- 38

ElektroStudios
- 19,105
- 33
- 200
- 417
-
2What is a 'designer file'? – Cameron May 02 '14 at 18:12
1 Answers
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