TRH
TRH

Reputation: 574

Visual Studio is locking .jfm files

(Using Visual Studio 2015 14.0.25431.01 Update 3)

My problem is much like this one -

Visual Studio 2015 Database Project directory contains a file with extension jfm

The approved answer is to edit the gitignore file to exclude this files.

But I'm using Visual Studio Online, not GIT, and there is no GitIgnore file for this solution.

I'm stumped. Any ideas

Upvotes: 3

Views: 6020

Answers (1)

JP.
JP.

Reputation: 5606

I think you're looking for a .tfignore file and not a .gitignore file. They are similar but the former is for TFVC and the latter for GIT.

See the 'Customize which files are ignored by version control' section of this document

Upvotes: 1

Related Questions