IVsBuildableProjectCfg::StartClean Method (IVsOutputWindowPane^, UInt32)

 

Requests that a project begin a clean operation, which is the process of deleting all of the outputs from the previous build.

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

int StartClean(
	IVsOutputWindowPane^ pIVsOutputWindowPane,
	unsigned int dwOptions
)

Parameters

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

[in] Pointer to the IVsOutputWindowPane interface that can be used to display status during the clean operation.

dwOptions
Type: System::UInt32

[in] Options governing the clean operation. Currently, dwOptions is always zero.

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 IVsBuildableProjectCfg::StartClean(
   [in] IVsOutputWindowPane *pIVsOutputWindowPane,
   [in] DWORD dwOptions
);
Return to top
Show: