Reputation: 3640
I've added a .tfignore file to my solution but it isn't doing anything. I'm pretty sure my statements in the ignore file are correct but I'm wondering.
Upvotes: 1
Views: 540
Reputation: 12546
.tfignore works with VS2013 however rules only apply to new files.
Existing files that you have already added to source control (or have in your pending changes list) won't suddenly get removed or ignored, because they're already under version control.
The .tfignore file applies to files in the folder it is in, and any subfolders under that.
Upvotes: 2