Visual Studio 安装程序包未构建
我正在尝试为我创建的 Windows 服务构建一个安装程序,当我去构建模块时,我收到以下消息..
========== 全部重建:1 成功,1 失败,0跳过了 ==========
但没有关于实际失败的信息。
由于某种原因,安装程序无法正确构建。 有谁知道我如何获得更多信息?
i am trying to build an installer for a windows service i have created and when i go to build the module i am getting the following message..
========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ==========
but there is no information about what actually failed.
For some reason the installer is not building right. does anyone know how i can get more information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很奇怪的是它会失败并且没有错误消息。 您可以尝试进行构建清理,然后显式重建所有内容吗?
请确保检查
It's very odd that it would fail with no error messages. Can you try to do a build clean followed by an explicit rebuild all.
Please make sure to check
看起来有点傻,但您确定没有将构建输出设置为“安静”吗?:
工具->选项-->项目和解决方案->构建并运行。
检查“MSBuild 项目构建输出详细程度”,确认其未设置为“安静”。 通常,“最小”将为您提供足够的信息以继续,尽管您可以尝试更高的设置。
Seems kinda silly but are you sure you don't have your build output set to Quiet?:
Tools->Options-->Projects and Solutions->Build and Run.
Check the 'MSBuild project build output verbosity' that it's not set to Quiet. Usually Minimal will give you enough info to go on, although you could try a higher setting.