IVsProjectFactory.CreateProject 方法

创建新项目。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function CreateProject ( _
    pszFilename As String, _
    pszLocation As String, _
    pszName As String, _
    grfCreateFlags As UInteger, _
    ByRef iidProject As Guid, _
    <OutAttribute> ByRef ppvProject As IntPtr, _
    <OutAttribute> ByRef pfCanceled As Integer _
) As Integer
int CreateProject(
    string pszFilename,
    string pszLocation,
    string pszName,
    uint grfCreateFlags,
    ref Guid iidProject,
    out IntPtr ppvProject,
    out int pfCanceled
)

参数

  • pszFilename
    类型:System.String
    [in] 将创建项目的文件名。
  • pszLocation
    类型:System.String
    [in] 用于创建新项目的位置。
  • pszName
    类型:System.String
    [in] 如果适用,使用的模板的名称,当克隆新项目时。
  • iidProject
    类型:System.Guid%
    [in] 调用方希望接口的标识符。
  • ppvProject
    类型:System.IntPtr%
    [out, iid_is(iidProject)] 为 iidProject 指定的接口的指针。
  • pfCanceled
    类型:System.Int32%
    [out] ,并在用户按 取消 按钮中止此项目的创建,返回 true 。否则为 false。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsProjectFactory::CreateProject(
   [in] LPCOLESTR pszFilename,
   [in] LPCOLESTR pszLocation,
   [in] LPCOLESTR pszName,
   [in] VSCREATEPROJFLAGS grfCreateFlags,
   [in] REFIID iidProject,
   [out, iid_is(iidProject)] void **ppvProject,
   [out] BOOL *pfCanceled
);

,当用户尝试创建新项目时,CreateProject 由 shell 调用。

通过克隆可能为空) 的现有模板项目创建新项目 (。 此环境使用文件扩展名确定调用此方法的 VSPackage。

.NET Framework 安全性

请参见

参考

IVsProjectFactory 接口

Microsoft.VisualStudio.Shell.Interop 命名空间