Visual Studio 2017 and TFS see which files are uploaded and to whom

In Visual Studio 2015, I could use Power Tools TFS and then run Find By Status to get a list of all the extracted files and who checked them.

Does anyone know how to do this in Visual Studio 2017? I read that they do not plan to release TFS Power Tools 2017.

Thanks,

+5
source share
1 answer

In fact, the "Search by Status" function works only for the server workspace. If you use a local workspace, it shows nothing.

enter image description here

As a workaround, perhaps you could use the tf status command, it displays information about pending changes in files and folders.

Or you can use the TFS API, here is an example: http://geekswithblogs.net/TarunArora/archive/2011/07/16/tfs-2010-sdk-get-list-of-user-workspaces-and-checked.aspx .

+2
source

Source: https://habr.com/ru/post/1263406/


All Articles