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 _
)
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: Object

    Required. The configuration.

  • warnings
    Type: Int32

    Required. The warnings.

  • errors
    Type: Int32

    Required. The errors.

  • Cancelled
    Type: 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

Microsoft.VisualStudio.VCProjectEngine Namespace