IVsProjectFlavorCfgOutputGroups::CustomizeOutputGroup Method (IVsOutputGroup^, IVsOutputGroup^)

 

Gives the base project access to IVsProjectFlavorCfgOutputGroups.

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

int CustomizeOutputGroup(
	IVsOutputGroup^ pIn,
	[OutAttribute] IVsOutputGroup^% pOut
)

Parameters

pIn
Type: Microsoft.VisualStudio.Shell.Interop::IVsOutputGroup^

[in] Pointer to the base projects IVsOutputGroup object.

pOut
Type: Microsoft.VisualStudio.Shell.Interop::IVsOutputGroup^

[out] IVsOutputGroup object of the project subtype.

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 IVsProjectFlavorCfgOutputGroups::CustomizeOutputGroup(
   [in] IVsOutputGroup *pIn,
   [out] IVsOutputGroup **pOut
);

The base project gets a pointer or reference to IVsProjectFlavorCfgOutputGroups interface from get_CfgType method.

Return to top
Show: