IVsAggregatableProjectFactory::GetAggregateProjectType Method (String^, String^)
Visual Studio 2015
Returns a string containing a list of project type GUIDs to aggregate to create an instance of this project. It should return at least one GUID—the project type GUID for itself. This method is expected to get the list of GUIDs from the specified file.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int GetAggregateProjectType(
String^ pszFilename,
[OutAttribute] String^% pbstrProjTypeGuid
)
Parameters
- pszFilename
-
Type:
System::String^
[in] The name of the project file containing the list of project type GUIDs.
- pbstrProjTypeGuid
-
Type:
System::String^
[out] Pointer to a string containing a semi-colon delimited list of the project type GUIDs, ordered from outer to the inner project subtype.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsAggregatableProjectFactory::GetAggregateProjectType(
[in] LPCOLESTR pszFilename,
[out] BSTR *pbstrProjTypeGuid
);
Show: