user2740190
user2740190

Reputation:

What setting in Visual Studio is marking my saved file as dirty

Many times when I just open a file in VS, it shows as changed in its TFS and if I do a compare with latest version, it shows nothing which is correct. What is it that it is changing upon opening and saving a file? ( both .XAML and .cs files) that marks them as dirty? So I can disable it

Upvotes: 0

Views: 437

Answers (1)

Rick
Rick

Reputation: 3451

If you save a file, the Last Modified timestamp gets... well... modified. This is when most source control systems start to think the file is 'dirty'.

Upvotes: 1

Related Questions