C# Class ServiceStack.BundlerRunOnSave.BundlerRunOnSavePackage

Inheritance: Microsoft.VisualStudio.Shell.Package
Exibir arquivo Open project: ServiceStack/Bundler

Public Methods

Method 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

Protected Methods

Method 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

Method Description
IsAllowedExtension ( string filename ) : bool
RunBundler ( ProjectItem projectItem ) : void
RunBundler ( string bundleCommandFullName ) : void

Method Details

BundlerRunOnSavePackage() public method

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
return System

BundlerSaveOnLoadPackage_DocumentSaved() public method

public BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void
document Document
return void

BundlerSaveOnLoadPackage_ItemAdded() public method

public BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void
projectItem ProjectItem
return void

BundlerSaveOnLoadPackage_ItemRenamed() public method

public BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void
projectItem ProjectItem
oldFileName string
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Initialize() protected method

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
return void

SolutionLoaded() public method

public SolutionLoaded ( ) : void
return void