We have some xml files in the our project and whenever we check-in these xml files into TFS, We have make sure before checking-in that we have added those xml files to proprietary application. Now the new employees more often forget to add files into proprietary application before check-in and this is getting serious... We want kinda confirmation dialog (a reminder) asking the developers if they have added the xml files into the app. If yes then check-in otherwise keep it checkedout...

Please suggest if such thing is possible and any relevant code or links will be really appreciated. [we have TFS 2010] Thank you

link|improve this question

40% accept rate
feedback

2 Answers

up vote 0 down vote accepted

It's not appropriate to raise UI in a custom check-in policy - the lifecycle of a check-in policy is very short, and they will be evaluated frequently and not necessarily in a UI context or on the UI thread.

Can you determine programmatically whether the appropriate XML files are being checked in? If so, you could create a custom check-in policy that fails if the XML files are not pended for add.

Gated Check-in may be the best solution to this problem: does the build fail if these XML files do not exist - or would unit tests fail if these files are missing? If so, this is a perfect candidate for Gated Check-in, which will prevent these check-ins from occurring.

link|improve this answer
Thanks a lot for your answer... I am afraid it neither crashes the build nor the unit test fails if these XML files are missing... – user221399 May 26 '11 at 18:56
So, i am expecting this is not possible to do... – user221399 May 26 '11 at 19:01
In that case, I would consider leveraging work items for this - you are, after all, trying to ensure that your developers have done some amount of work (in this case, checking in XML files) – Edward Thomson May 26 '11 at 19:03
hmmmm, yes but this is not like work i would like to track in the form of work item.. Its like whenever the developer checks-in the xml file.. the developer must get kinda reminder that not to forget to add these xml specific xml files in the proprietary application (custom app nothing to do with TFS). So to make it more clear these XML gets added in 2 different applications. (1) .net project, this where TFS is used (2) custom proprietary application – user221399 May 26 '11 at 19:08
Yes, I understand -- my preference would be to find a way to query the proprietary application to know if those XML files were added or not, then write a check in policy that does that query and fails if the proprietary application does not have them. Short of that ability, things are going to be a bit of a hack. I can understand the hesitation around work items -- another idea is to require the user to add some other data to the check-in to "prove" that they've solved this requirement, for example putting the phrase "XML ADDED" in their comment, and then checking for that. – Edward Thomson May 26 '11 at 19:18
show 2 more comments
feedback

I would create a custom build template that checks for these xml files. Make it a gated check-in and you've got your solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.