BuildSubmissionCompleteCallback Delegate

 

A callback function that receives notification when a build completes.

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:   Microsoft.Build.Execution
Assembly:  Microsoft.Build (in Microsoft.Build.dll)

public delegate void BuildSubmissionCompleteCallback(
	BuildSubmission^ submission
)

Parameters

submission
Type: Microsoft.Build.Execution::BuildSubmission^

The submission that initiates the build.

When this delegate is invoked, the WaitHandle on the BuildSubmission will have been be signaled and the OverallResult will be valid.

Return to top
Show: