IVsSolution2::GetProjectTypeGuid Method (UInt32, String^, Guid)

 

Returns the project type, given a GUID.

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

int GetProjectTypeGuid(
	unsigned int dwReserved,
	String^ pszMkProject,
	[OutAttribute] Guid% pguidProjectType
)

Parameters

dwReserved
Type: System::UInt32

[in] Reserved for future use.

pszMkProject
Type: System::String^

[in] Pointer to the path of the project.

pguidProjectType
Type: System::Guid

[out, retval] Pointer to the project type.

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 IVsSolution2::GetProjectTypeGuid(
   [in] DWORD dwReserved, 
   [in] LPCOLESTR pszMkProject, 
   [out, retval] GUID *pguidProjectType
);
Return to top
Show: