메소드 | 설명 | |
---|---|---|
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 |
메소드 | 설명 | |
---|---|---|
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.
|
메소드 | 설명 | |
---|---|---|
IsAllowedExtension ( string filename ) : bool | ||
RunBundler ( ProjectItem projectItem ) : void | ||
RunBundler ( string bundleCommandFullName ) : void |
public BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void | ||
document | Document | |
리턴 | void |
public BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void | ||
projectItem | ProjectItem | |
리턴 | void |
public BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void | ||
projectItem | ProjectItem | |
oldFileName | string | |
리턴 | void |