Método IVsSolution2.GenerateNextDefaultProjectName (String, String, String)
Publicado: abril de 2016
Gera o próximo nome de projeto padrão fornecido um caminho específico.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GenerateNextDefaultProjectName(
string pszBaseName,
string pszLocation,
out string pbstrProjectName
)
int GenerateNextDefaultProjectName(
String^ pszBaseName,
String^ pszLocation,
[OutAttribute] String^% pbstrProjectName
)
abstract GenerateNextDefaultProjectName :
pszBaseName:string *
pszLocation:string *
pbstrProjectName:string byref -> int
Function GenerateNextDefaultProjectName (
pszBaseName As String,
pszLocation As String,
<OutAttribute> ByRef pbstrProjectName As String
) As Integer
Parâmetros
- pszBaseName
[in] Nome de raiz do projeto.
- pszLocation
[in] Local do projeto (caminho).
- pbstrProjectName
[out] Ponteiro para o nome do projeto retornado.
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.
Implementações
IVsSolution.GenerateNextDefaultProjectName(String, String, String)
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsSolution2::GenerateNextDefaultProjectName(
[in] LPCOLESTR pszBaseName,
[in] LPCOLESTR pszLocation,
[out] BSTR *pbstrProjectName
);
Esse método obtém o nome padrão para o próximo projeto na solução, por exemplo, Projeto2.
Consulte também
Interface IVsSolution2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo