IVsBuildStatusCallback.BuildEnd(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies the environment that a build operation has ended. fSuccess
indicates whether the build completed successfully.
public:
int BuildEnd(int fSuccess);
public:
int BuildEnd(int fSuccess);
int BuildEnd(int fSuccess);
public int BuildEnd (int fSuccess);
abstract member BuildEnd : int -> int
Public Function BuildEnd (fSuccess As Integer) As Integer
Parameters
- fSuccess
- 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.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsBuildStatusCallback::BuildEnd(
[in] BOOL fSuccess
);