VS 2008解决方案构建
我有两个项目,当我为 p1 选择“构建解决方案”时,它什么也不做。也就是说我可以构建 p1 的项目,但不能构建解决方案。相同的“构建解决方案”选项适用于 p2?
:( 。我应该在 p1 上更改任何选项以启用构建吗?
I have two projects, When i select 'Build Solution' for p1, it does nothing. That is I can build projects of p1, but not the solution. The same 'Build Solution' option works fine for p2?
:( . Is there any option should i change on p1 to enable build?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio 中,解决方案构建会在解决方案中构建各种项目并将它们编译为 dll 程序集。
没有解决方案的 dll 程序集。解决方案是一组单独或一起构建的项目。
要管理构建哪些项目和不构建哪些项目,请使用顶部工具条中的“解决方案配置”下拉列表。这使您可以定义单击“构建解决方案”时构建哪些项目以及忽略哪些项目。
In visual studio, a solution build builds various projects in your solution and compiles them into dll assemblies.
There is no dll assembly for a solution. A solution is a group of projects that build either separately or together.
To manage which projects build and which to not, use the Solution Configurations dropdown in the top toolstrip. That lets you define which projects build and which are ignored when you click "Build Solution".