1

I am using Visual Studio Team Services (Visual Studio Online) w/ TFVC for source control. My MVC application has a directory in the wwwroot called uploads (where I am doing testing to upload files).

I do not want this folder to be part of source control at all. How do I exclude it from source control completely?

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
Blake Rivell
  • 13,105
  • 31
  • 115
  • 231
  • Here's some info on ignoring folders: http://stackoverflow.com/questions/922798/how-to-ignore-files-directories-in-tfs-for-avoiding-them-to-go-to-central-source – FloatingKiwi Aug 19 '16 at 05:44

1 Answers1

0

Add a .tfignore file to your project and delete the folder from source control.

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120