Gets a semicolon-delimited list of project GUIDs from the project file.
Namespace: Microsoft.VisualStudio.Package
Assembly: MPF.Project.NonShipping (in MPF.Project.NonShipping.dll)
Syntax
'宣言
Protected Overrides Function ProjectTypeGuids ( _
file As String _
) As String
'使用
Dim file As String
Dim returnValue As String
returnValue = Me.ProjectTypeGuids(file)
protected override string ProjectTypeGuids(
string file
)
protected:
virtual String^ ProjectTypeGuids(
String^ file
) override
protected override function ProjectTypeGuids(
file : String
) : String
Parameters
file
Type: System.StringThe project file.
Return Value
Type: System.String
A semicolon-delimited list of project GUIDs.
Remarks
If you don't want your project to be flavorable, override this method to return only your project factory GUID: return this.GetType().GUID.ToString("B");
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.