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

'Declaration
Sub ProjectBuildFinished ( _
    Cfg As Object, _
    warnings As Integer, _
    errors As Integer, _
    Cancelled As Boolean _
)
'Usage
Dim instance As IVCProjectEngineEvents 
Dim Cfg As Object 
Dim warnings As Integer 
Dim errors As Integer 
Dim Cancelled As Boolean

instance.ProjectBuildFinished(Cfg, warnings, _
    errors, Cancelled)
void ProjectBuildFinished(
    Object Cfg,
    int warnings,
    int errors,
    bool Cancelled
)
void ProjectBuildFinished(
    Object^ Cfg, 
    int warnings, 
    int errors, 
    bool Cancelled
)
function ProjectBuildFinished(
    Cfg : Object, 
    warnings : int, 
    errors : int, 
    Cancelled : boolean
)

Parameters

  • 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

See Also

Reference

IVCProjectEngineEvents Interface

IVCProjectEngineEvents Members

Microsoft.VisualStudio.VCProjectEngine Namespace