Compartilhar via


Método IVsSolution.CreateSolution (String, String, UInt32)

 

Publicado: abril de 2016

Cria uma nova solução.

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

Sintaxe

int CreateSolution(
    string lpszLocation,
    string lpszName,
    uint grfCreateFlags
)
int CreateSolution(
    String^ lpszLocation,
    String^ lpszName,
    unsigned int grfCreateFlags
)
abstract CreateSolution : 
        lpszLocation:string *
        lpszName:string *
        grfCreateFlags:uint32 -> int
Function CreateSolution (
    lpszLocation As String,
    lpszName As String,
    grfCreateFlags As UInteger
) As Integer

Parâmetros

  • lpszLocation
    [in, exclusivo] Caminho para a solução, excluindo o nome do arquivo.
  • lpszName
    [in] Nome do arquivo, excluindo a extensão.
  • grfCreateFlags
    [in, exclusivo] Controla como uma nova solução é criada.Para obter uma lista de grfCreateFlags valores, consulte __VSCREATESOLUTIONFLAGS.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsSolution::CreateSolution(
   [in, unique] LPCOLESTR lpszLocation,
   [in, unique] LPCOLESTR lpszName,
   [in] VSCREATESOLUTIONFLAGS grfCreateFlags
);

Consulte também

Interface IVsSolution
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo