在哪里可以找到/查看可在设计器文件中使用的Visual Studio可用全局变量列表,例如$rootnamespace$
?
答案 0 :(得分:3)
此documentation article列出了一些。{
但要获得所有这些内容,您可以实现自己的wizard,然后在IWizard.RunStarted
中,您将在replacementsDictionary
参数中使用各自的值接收这些参数,然后您可以查看它们处于调试模式或保存到文件中。
void RunStarted(
Object automationObject,
Dictionary<string, string> replacementsDictionary,
WizardRunKind runKind,
Object[] customParams
)