MSDN Article: http://msdn.microsoft.com/en-us/library/bb651793.aspx some way to use foreachhttp://www.differentpla.net/content/2010/08/msbuild-target-batching-each-simplified Using this concept and Running Targets in Parallelhttp://mikefourie.wordpress.com/2010/12/04/running-targets-in-parallel-in-msbuild/ This would somehow won’t produce the nice logging to read though.
I never thought that displaying Hyperlink is so simple using WriteCustomSummaryInformation String.Format(“My Custom step:[{0}]({1})”,”View Log File”, ““);
TFS: How to Lock the Source Control Tree We get to this point where we want to stop all devtest to stop check-in the code. We want to freeze the branch and stop any new changes to be populated to the Branch. TFS came with simple way to incorporate this…. Read more »
Detecting All Files Locked by Remote User We know how to undo files checkout by other users:tf undo $/MyProject/packages/EntityFramework.5.0.0/tools/migrate.exe /workspace:”MyWorkspace;MyName” /server:http://TestTFS:8080/tfs/Project In some cases, you are not sure how many files are locked by the User. If User is unavailable, you can’t delete the workspace as well. If… Read more »
Common problem we faced in large teams is that, someone locks the file in TFS and which does not allow others to check-in until the locked one, unlocks it. What if the guy who locked is not available or out of team.Simple scenario is that, we are onsite and offshore… Read more »
How to Schedule TeamBuilds to run on various Schedules As far as we know, we only have couple of options to schedule to the TeamBuild 2010. a. Manual Builds – Manual Interventionb. Continious Integration – After each Check-Inc. Rolling Builds – After Check-in but on accumulation of Check-Insd. Gated Check-Ins… Read more »
If we are familiar with any of the programming languages, we know the scope of Variables defined in Global/Parent scope and private scope. A Variable defined in Global can be used in Parent implementations and its own child implementations. There will be facility to update the global value inside the… Read more »