C# Class ServiceStack.BundlerRunOnSave.BundlerRunOnSavePackage

Inheritance: Microsoft.VisualStudio.Shell.Package
Afficher le fichier Open project: ServiceStack/Bundler

Méthodes publiques

Méthode Description
BundlerRunOnSavePackage ( ) : System

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.

BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void
BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void
BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void
SolutionLoaded ( ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void
Initialize ( ) : void

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initilaization code that rely on services provided by VisualStudio.

Private Methods

Méthode Description
IsAllowedExtension ( string filename ) : bool
RunBundler ( ProjectItem projectItem ) : void
RunBundler ( string bundleCommandFullName ) : void

Method Details

BundlerRunOnSavePackage() public méthode

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.
public BundlerRunOnSavePackage ( ) : System
Résultat System

BundlerSaveOnLoadPackage_DocumentSaved() public méthode

public BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void
document Document
Résultat void

BundlerSaveOnLoadPackage_ItemAdded() public méthode

public BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void
projectItem ProjectItem
Résultat void

BundlerSaveOnLoadPackage_ItemRenamed() public méthode

public BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void
projectItem ProjectItem
oldFileName string
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Initialize() protected méthode

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initilaization code that rely on services provided by VisualStudio.
protected Initialize ( ) : void
Résultat void

SolutionLoaded() public méthode

public SolutionLoaded ( ) : void
Résultat void