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é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.
|
Méthode | Description | |
---|---|---|
IsAllowedExtension ( string filename ) : bool | ||
RunBundler ( ProjectItem projectItem ) : void | ||
RunBundler ( string bundleCommandFullName ) : void |
public BundlerRunOnSavePackage ( ) : System | ||
Résultat | System |
public BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void | ||
document | Document | |
Résultat | void |
public BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void | ||
projectItem | ProjectItem | |
Résultat | void |
public BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void | ||
projectItem | ProjectItem | |
oldFileName | string | |
Résultat | void |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
Résultat | void |