IVsBuildableProjectCfg2::StartBuildEx Method (UInt32, IVsOutputWindowPane^, UInt32)

 

Requests that a project begin building.

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

int StartBuildEx(
	unsigned int dwBuildId,
	IVsOutputWindowPane^ pIVsOutputWindowPane,
	unsigned int dwOptions
)

Parameters

dwBuildId
Type: System::UInt32

[in] Integer value identifying the build.

pIVsOutputWindowPane
Type: Microsoft.VisualStudio.Shell.Interop::IVsOutputWindowPane^

[in] Pointer to an IVsOutputWindowPane interface for the output window.

dwOptions
Type: System::UInt32

[in] Bit flags indicating build options. Dependent on the specific implementation.

Return Value

Type: System::Int32

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

From vsshell80.idl:

HRESULT IVsBuildableProjectCfg2::StartBuildEx(
   [in] DWORD dwBuildId, 
   [in] IVsOutputWindowPane *pIVsOutputWindowPane, 
   [in] DWORD dwOptions
);

Both the build identifier and the options bit flags are implementation dependent.

Return to top
Show: