Chris Conway
Chris Conway

Reputation: 16519

Why does vwd.webinfo always get automatically checked out from source control?

We have a 2008 solution that has a file system website as part of the solution. This solution is under source control with Team Foundation Server. Every time the solution is closed it either checks out a file called vwd.webinfo or attempts to and complains that someone else already has it checked out.

Removing the file from source control does not fix the issue because it gets re-added automatically for some reason.

Why does this happen and is there something we can do about it to remove this nag?

Thanks a lot!

Upvotes: 10

Views: 8839

Answers (3)

Peggy
Peggy

Reputation: 41

Go to Property Pages, select Build on the left, and uncheck "Build Web site as part of solution" Then you can delete the file and it won't get created automatically.

Upvotes: 4

Emanuele Greco
Emanuele Greco

Reputation: 12721

  1. open "source control explorer"
  2. find vwd.webinfo in the correct path
  3. click "delete"
  4. chek-in the operation to solve this problem

The file will still be in your file system and solution, but not under source-control. You won't see "plus" or "v" or "lock" button

https://i.sstatic.net/jAVee.png

Upvotes: 6

Jeremy Cron
Jeremy Cron

Reputation: 2392

You should be able to delete this file manually and have it not reappear. This file holds some information that used to be located elsewhere in the project in earlier versions but apparently is not necessary. Close your solution before deleting the file from source control and on the disk.

Upvotes: 0

Related Questions