C# Class EmberStudio.EmberControllerTemplateWizard

Inheritance: IWizard
Afficher le fichier Open project: zgramana/EmberStudio

Méthodes publiques

Méthode 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 replacementsDictionary, WizardRunKind runKind, object customParams ) : void

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 Details

BeforeOpeningFile() public méthode

Runs custom wizard logic before opening an item in the template.
public BeforeOpeningFile ( ProjectItem projectItem ) : void
projectItem ProjectItem The project item that will be opened.
Résultat void

ProjectFinishedGenerating() public méthode

Runs custom wizard logic when a project has finished generating.
public ProjectFinishedGenerating ( Project project ) : void
project Project The project that finished generating.
Résultat void

ProjectItemFinishedGenerating() public méthode

Runs custom wizard logic when a project item has finished generating.
public ProjectItemFinishedGenerating ( ProjectItem projectItem ) : void
projectItem ProjectItem The project item that finished generating.
Résultat void

RunFinished() public méthode

Runs custom wizard logic when the wizard has completed all tasks.
public RunFinished ( ) : void
Résultat void

RunStarted() public méthode

Runs custom wizard logic at the beginning of a template wizard run.
public RunStarted ( object automationObject, string>.Dictionary replacementsDictionary, WizardRunKind runKind, object customParams ) : void
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 indicating the type of wizard run.
customParams object The custom parameters with which to perform parameter replacement in the project.
Résultat void

ShouldAddProjectItem() public méthode

Indicates whether the specified project item should be added to the project.
public ShouldAddProjectItem ( string filePath ) : bool
filePath string The path to the project item.
Résultat bool