C# 클래스 ServiceStack.BundlerRunOnSave.BundlerRunOnSavePackage

상속: Microsoft.VisualStudio.Shell.Package
파일 보기 프로젝트 열기: ServiceStack/Bundler

공개 메소드들

메소드 설명
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

메소드 상세

BundlerRunOnSavePackage() 공개 메소드

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
리턴 System

BundlerSaveOnLoadPackage_DocumentSaved() 공개 메소드

public BundlerSaveOnLoadPackage_DocumentSaved ( Document document ) : void
document Document
리턴 void

BundlerSaveOnLoadPackage_ItemAdded() 공개 메소드

public BundlerSaveOnLoadPackage_ItemAdded ( ProjectItem projectItem ) : void
projectItem ProjectItem
리턴 void

BundlerSaveOnLoadPackage_ItemRenamed() 공개 메소드

public BundlerSaveOnLoadPackage_ItemRenamed ( ProjectItem projectItem, string oldFileName ) : void
projectItem ProjectItem
oldFileName string
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Initialize() 보호된 메소드

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
리턴 void

SolutionLoaded() 공개 메소드

public SolutionLoaded ( ) : void
리턴 void