Stop Refresh inside TFS Build window in Visual Studio

时光毁灭记忆、已成空白 提交于 2019-11-30 07:05:03
Duat Le

There is a way to make this stop. Add the following registry key

HKEY_CURRENT_USER\SOFTWARE\Microsoft\VisualStudio\10.0\TeamFoundation\Build\UISettings with value name "ReportPollingInterval"

with a DWORD value (in ms) for the refresh interval. By default it refreshes every 10 seconds.

You will need to change "10.0" to your Visual Studio version (e.g. Visual Studio 2013 is "12.0", and Visual Studio 2015 is "14.0")

E.g. run this on your command line:

reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\VisualStudio\14.0\TeamFoundation\Build\UISettings /v ReportPollingInterval /t REG_DWORD /d 1000000000

ReportPollingInterval set to 0 means off.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!