我正在为项目模板实现向导,我想获取用户在“新建项目”窗口中选择的项目/解决方案路径。我知道有某些参数,如 $saferootprojectname$ 来获取项目的名称,但不知道如何获取位置路径
问候
我正在为项目模板实现向导,我想获取用户在“新建项目”窗口中选择的项目/解决方案路径。我知道有某些参数,如 $saferootprojectname$ 来获取项目的名称,但不知道如何获取位置路径
问候
在 RunStarted 方法上,使用 replacementsDictionary["$destinationdirectory$"] 包含目标目录。
public void RunStarted(object automationObject, Dictionary<string,string> replacementsDictionary, WizardRunKind runKind, object[] customParams)
{
string Path=replacementsDictionary["$destinationdirectory$"];
}
您可以在生成的代码文件中使用“$destinationdirectory$”。
我在这里找到了这个答案