使用 MSDeploy API 获取 Web 服务器的依赖项
我刚刚开始掌握 MSDeploy (Microsoft.Web.Deployment.dll) 的 C# API,但我正在努力寻找一种方法来确定给定 Web 服务器的依赖关系。
基本上,我想要以下 MSDeploy 命令行调用的 C# 等效项:
msdeploy.exe -verb:getDependencies -source:webServer
我尝试过 文档,但我没有运气。有人能指出我正确的方向吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查了 Reflector 中的 MSDeploy 可执行文件后,发现 API 并未公开 getDependency 操作(该方法是内部方法)。
因此,我不得不求助于调用命令行并处理结果:
希望这对尝试做同样事情的其他人有用!
Having examined the MSDeploy executable in Reflector, it seems that the getDependencies operation is not exposed by the API (the method is internal).
So instead I've had to fall back on calling out to the command line, and processing the results:
Hopefully this is useful to anybody else that ever tries to do the same thing!
实际上有一种方法可以通过公共 API 使用 DeploymentObject.Invoke(string methodName, params object[]parameters) 来实现此目的。
当“getDependency”用于methodName时,该方法返回一个XPathNavigator对象:
There actually is a way of getting there via the public API by using DeploymentObject.Invoke(string methodName, params object[] parameters).
When "getDependencies" is used for methodName, the method returns an XPathNavigator object: