IVsSolutionBuildManager.StartSimpleUpdateProjectConfiguration 方法
这是使您可以生成,清理,部署或启动一个项目配置更新命令的变量。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function StartSimpleUpdateProjectConfiguration ( _
pIVsHierarchyToBuild As IVsHierarchy, _
pIVsHierarchyDependent As IVsHierarchy, _
pszDependentConfigurationCanonicalName As String, _
dwFlags As UInteger, _
dwDefQueryResults As UInteger, _
fSuppressUI As Integer _
) As Integer
int StartSimpleUpdateProjectConfiguration(
IVsHierarchy pIVsHierarchyToBuild,
IVsHierarchy pIVsHierarchyDependent,
string pszDependentConfigurationCanonicalName,
uint dwFlags,
uint dwDefQueryResults,
int fSuppressUI
)
参数
- pIVsHierarchyToBuild
类型:Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] 对生成的项目的 IVsHierarchy 对象的指针。
- pIVsHierarchyDependent
类型:Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] 对一个选项依赖项目的指针在 IVsHierarchy包含的依赖项关系图。
- pszDependentConfigurationCanonicalName
类型:System.String
[in] 为 null 指针已停止包含可选依赖配置规范名称的字符串。
- dwFlags
类型:System.UInt32
[in] 包含生成更新标志的双字。有关更多信息,请参见VSSOLNBUILDUPDATEFLAGS2。
- dwDefQueryResults
类型:System.UInt32
[in] 包含 def 查询结果的双字。有关更多信息,请参见VSSOLNBUILDQUERYRESULTS。
- fSuppressUI
类型:System.Int32
[in] 设置为 true 用于任何对话框的默认响应,不会显示;否则 false。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsSolutionBuildManager::StartSimpleUpdateProjectConfiguration(
[in] IVsHierarchy *pIVsHierarchyToBuild,
[in] IVsHierarchy *pIVsHierarchyDependent,
[in] LPCOLESTR pszDependentConfigurationCanonicalName,
[in] DWORD dwFlags,
[in] DWORD dwDefQueryResults
);
指针 pIVsHierarchyDependent 和 pszDependentConfigurationCanonicalName 没有在方法实现,并且必须是 nullnull 引用(在 Visual Basic 中为 Nothing)。否则 E_INVALIDARG 将返回。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。