IVCProjectEngineEvents::ProjectBuildFinished Method (Object^, Int32, Int32, Boolean)
Visual Studio 2015
Signifies that the building of a project has been completed.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
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.
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.
Show: