Tawani
Tawani

Reputation: 11198

Why does Visual Studio (2008) create all these *.vsmdi files

Why does Visual Studio (2008) unit testing create all these *.vsmdi files? Can it be turned off?

Upvotes: 8

Views: 698

Answers (1)

user1228
user1228

Reputation:

Answer in two parts.

vsmdi files are used to store information about your tests. So you need them when using ms' test suite in visual studio.

You should only ever have one vsmdi file in your solution. There is a well known bug where VS keeps creating new vsmdi files (vsmdi1, vsmdi2, vsmdi3, etc) when the original is locked by source control. There is no fix for this. You just have to be wary it's happening and delete them.

Upvotes: 8

Related Questions