I have a little issue that's causing my automated builds to fall over.
When we open a solution recently converted from VS2005 to VS2008 VS through ClearCase requests that we checkout the solution file.
If we allow it then it makes no changes anyway and by default ClearCase doesn't like checkins without changes. So we undo the checkout - and from then on VS is happy, it was able to write the .suo file.
If we un-read protect the solution file, start up VS2008 it creates the .suo file ok, if we then un-hijack the .sln file (no changes anyway so VS2008 doesn't notice) and fire up VS2008 again it's fine - doesn't ask for a checkout.
In my build script I delete all view private files from the view and then do an update with forced un-hijack of controlled files. And then we build the deployment projects (and thus all dependencies), and as the .suo file is being deleted it falls into the checkout .sln file behaviour every time.
And on the build server there isn't anybody around to see the dialog asking for a checkout, the build hangs.
I could change (aka bodge) the build script to not delete the .suo file, but I would rather not do this.
edit: clarification - the .suo file is NOT checked into ClearClase - it is a view private file that is being created by VS2008, however to create this file it wants to check out the .sln file for not real reason.
Further Edit:
I have found the solution to this - I've disabled the integration as per my follow up post on this thread.