IVsAggregatableProjectFactoryCorrected::GetAggregateProjectType Method (String^, String^)

 

Returns a string containing a list of project type GUIDs to aggregate to create an instance of this project.

Namespace:   Microsoft.VisualStudio.Shell.Flavor
Assembly:  Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)

int GetAggregateProjectType(
	String^ fileName,
	[OutAttribute] String^% projectTypeGuid
)

Parameters

fileName
Type: System::String^

[in] The name of the project file containing the list of project type GUIDs.

projectTypeGuid
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::Int32

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

GetAggregateProjectType 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.

Return to top
Show: