IVsBuildStatusCallback::BuildEnd Method (Int32)
Visual Studio 2015
Notifies the environment that a build operation has ended. fSuccess indicates whether the build completed successfully.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
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::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsBuildStatusCallback::BuildEnd(
[in] BOOL fSuccess
);
Show: