博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
how find out what is causing Visual Studio to think each project is out of date
阅读量:5267 次
发布时间:2019-06-14

本文共 783 字,大约阅读时间需要 2 分钟。

You can find out what is causing Visual Studio to think each project is out of date, and then address the issue directly.

  1. Select Tools → Options → Projects and Solutions → Build and Run.
  2. For the setting "MSBuild project build output verbosity:" select "Diagnostic".
  3. Build.

You will get a huge amount of output in the output window detailing exactly what the build is doing. Before building each project it will print out why it thinks it is out of date. An example of such output is:

Project 'Foo' is not up to date. Input file 'c:\Bar.cs' is modified after output file

These "not up to date" messages should point you to the real cause of the unnecessary builds, which you can then fix.

 

posted on
2018-07-04 22:20 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/likemao/p/9265676.html

你可能感兴趣的文章
平台维护流程
查看>>
2012暑期川西旅游之总结
查看>>
Linux发行版的排行
查看>>
12010 解密QQ号(队列)
查看>>
2014年辛星完全解读Javascript第一节
查看>>
装配SpringBean(一)--依赖注入
查看>>
daydayup2 codeforces143C
查看>>
ANT打包J2EE项目war包
查看>>
UESTC-我要长高 DP优化
查看>>
java选择文件时提供图像缩略图[转]
查看>>
当DIV内出现滚动条,fixed实效怎么办?
查看>>
方维分享系统二次开发, 给评论、主题、回复、活动 加审核的功能
查看>>
Matlab parfor-loop并行运算
查看>>
string与stringbuilder的区别
查看>>
2012-01-12 16:01 hibernate注解以及简单实例
查看>>
iOS8统一的系统提示控件——UIAlertController
查看>>
PAT甲级——1101 Quick Sort (快速排序)
查看>>
python创建进程的两种方式
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>