Method | Description | |
---|---|---|
BeforeOpeningFile ( ProjectItem projectItem ) : void |
Runs custom wizard logic before opening an item in the template.
|
|
ProjectFinishedGenerating ( Project project ) : void |
Runs custom wizard logic when a project has finished generating.
|
|
ProjectItemFinishedGenerating ( ProjectItem projectItem ) : void |
Runs custom wizard logic when a project item has finished generating.
|
|
RunFinished ( ) : void |
Runs custom wizard logic when the wizard has completed all tasks.
|
|
RunStarted ( object automationObject, string>.Dictionary |
Runs custom wizard logic at the beginning of a template wizard run.
|
|
ShouldAddProjectItem ( string filePath ) : bool |
Indicates whether the specified project item should be added to the project.
|
Method | Description | |
---|---|---|
WriteToFile ( string iPath, string iContent ) : void |
public BeforeOpeningFile ( ProjectItem projectItem ) : void | ||
projectItem | ProjectItem | The project item that will be opened. |
return | void |
public ProjectFinishedGenerating ( Project project ) : void | ||
project | Project | The project that finished generating. |
return | void |
public ProjectItemFinishedGenerating ( ProjectItem projectItem ) : void | ||
projectItem | ProjectItem | The project item that finished generating. |
return | void |
public RunStarted ( object automationObject, string>.Dictionary |
||
automationObject | object | The automation object being used by the template wizard. |
replacementsDictionary | string>.Dictionary | The list of standard parameters to be replaced. |
runKind | WizardRunKind | A |
customParams | object | The custom parameters with which to perform parameter replacement in the project. |
return | void |
public ShouldAddProjectItem ( string filePath ) : bool | ||
filePath | string | The path to the project item. |
return | bool |