IVCProjectEngineEvents.ProjectBuildFinished Method
Signifies that the building of a project has been completed.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
‘선언
Sub ProjectBuildFinished ( _
Cfg As Object, _
warnings As Integer, _
errors As Integer, _
Cancelled As Boolean _
)
void ProjectBuildFinished(
Object Cfg,
int warnings,
int errors,
bool Cancelled
)
void ProjectBuildFinished(
Object^ Cfg,
int warnings,
int errors,
bool Cancelled
)
abstract ProjectBuildFinished :
Cfg:Object *
warnings:int *
errors:int *
Cancelled:bool -> unit
function ProjectBuildFinished(
Cfg : Object,
warnings : int,
errors : int,
Cancelled : boolean
)
Parameters
- Cfg
Type: System.Object
Required. The configuration.
- warnings
Type: System.Int32
Required. The warnings.
- errors
Type: System.Int32
Required. The errors.
- Cancelled
Type: System.Boolean
Required. true if the build was canceled; otherwise false.
Remarks
Builds invoked by an automation program or by the Visual Studio integrate development environment (IDE), are normally background processes. ProjectBuildFinished is helpful because it causes your program to pause execution until the build that was started by your program is finished.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.