Is there a way to find untracked files that are inside your solution in source control? I Couldn't find an answer.

Already tried doing a git status or svn status to see if it was using any of those. (You can probably tell by now that I'm a VB.NET noob.)

Thanks!

有帮助吗?

解决方案

From a Visual Studio command prompt use the tf folderdiff command.

something like

tf folderdiff c:\myLocalFolder $/TeamProject/MyServerFolder /recursive

You can also filter out certain types of file so if you don't want to include build output you can use something like this

tf folderdiff c:\myLocalFolder $/TeamProject/MyServerFolder /recursive /filter:!*.exe,!*.pdb

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top