IVsUpdateSolutionEvents2::UpdateProjectCfg_Done Method (IVsHierarchy^, IVsCfg^, IVsCfg^, UInt32, Int32, Int32)

 

Called right after a project configuration is finished building.

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

int UpdateProjectCfg_Done(
	IVsHierarchy^ pHierProj,
	IVsCfg^ pCfgProj,
	IVsCfg^ pCfgSln,
	unsigned int dwAction,
	int fSuccess,
	int fCancel
)

Parameters

pHierProj
Type: Microsoft.VisualStudio.Shell.Interop::IVsHierarchy^

[in] Pointer to a hierarchy project object.

pCfgProj
Type: Microsoft.VisualStudio.Shell.Interop::IVsCfg^

[in] Pointer to a configuration project object.

pCfgSln
Type: Microsoft.VisualStudio.Shell.Interop::IVsCfg^

[in] Pointer to a configuration solution object.

dwAction
Type: System::UInt32

[in] Double word containing the action.

fSuccess
Type: System::Int32

[in] Flag indicating success.

fCancel
Type: System::Int32

[in] Flag indicating cancel.

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 IVsUpdateSolutionEvents2::UpdateProjectCfg_Done(
   [in] IVsHierarchy *pHierProj,
   [in] IVsCfg *pCfgProj,
   [in] IVsCfg *pCfgSln,
   [in] DWORD dwAction,
   [in] BOOL fSuccess,
   [in] BOOL fCancel
);
Return to top
Show: