IVsBuildStatusCallback::BuildEnd Method (Int32)

 

Notifies the environment that a build operation has ended. fSuccess indicates whether the build completed successfully.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int BuildEnd(
	int fSuccess
)

Parameters

fSuccess
Type: System::Int32

[in] true if the build operation completed successfully. After an up-to-date check, fSuccess is set to true when the project configuration is up to date and false when the project configuration is not up to date.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsBuildStatusCallback::BuildEnd(
   [in] BOOL fSuccess
);
Return to top
Show: