从 DTE 打包 SharePoint 解决方案
有没有办法从 Visual Studio dte 将 SharePoint 解决方案打包到 .wsp 文件中?
我可以使用以下命令构建解决方案:
$dte.ExecuteCommand("Build.RebuildSolution")
但这不会打包项目。
注意:我尝试使用 Powershell/PowerConsole 来执行此操作,但这与我以其他方式访问 $dte 是一样的。
Is there a way to package a SharePoint solution in a .wsp file from the Visual Studio dte?
I can build the solution with the following command:
$dte.ExecuteCommand("Build.RebuildSolution")
But that doesn't package the project.
Note: I was trying to do this with Powershell/PowerConsole, but it would be the same as if I was accessing the $dte some other way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$dte.ExecuteCommand("Build.Package")
$dte.ExecuteCommand("Build.Package")