Método IVsBuildPropertyStorage.SetPropertyValue (String, String, UInt32, String)
Publicado: abril de 2016
Usado por um subtipo de projeto para definir um MSBuild o valor da propriedade.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int SetPropertyValue(
string pszPropName,
string pszConfigName,
uint storage,
string pszPropValue
)
int SetPropertyValue(
String^ pszPropName,
String^ pszConfigName,
unsigned int storage,
String^ pszPropValue
)
abstract SetPropertyValue :
pszPropName:string *
pszConfigName:string *
storage:uint32 *
pszPropValue:string -> int
Function SetPropertyValue (
pszPropName As String,
pszConfigName As String,
storage As UInteger,
pszPropValue As String
) As Integer
Parâmetros
- pszPropName
[in] Nome da propriedade build.
- pszConfigName
[in] Nome da configuração de compilação.
- storage
[in] Tipo de armazenamento de persistência do arquivo.Valores são obtidas a partir do _PersistStorageType enumeração.
- pszPropValue
[in] Especifica o MSBuild o valor da propriedade.
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 vsshell80.idl:
HRESULT IVsBuildPropertyStorage::SetPropertyValue(
[in] LPCOLESTR pszPropName,
[in] LPCOLESTR pszConfigName,
[in] PersistStorageType storage,
[in] LPCOLESTR pszPropValue
);
Consulte também
Interface IVsBuildPropertyStorage
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo