tfs2008

TFS - How to stop / hide recording history for some workitem.fields

I have a workitem field in TFS that I am not showing in the layout for the users. However, I update the field with a value thru my other program that interacts with TFS. Now the problem is: Every time when my program update that workitem field in TFS, the users are seeing the "old value" and "new value" of that field in the "show chang...

TFS Burn down charts

Hi I want to create a simple ssrs report showing rolling burndown chart for each team member in a particular iteration/sprint. So if 5 members are on the team then there should a burndown chart for each of the member depiciting the remaining effort (in hrs) against last 30 days. This will be a rolling time period from present date to la...

TFS project structure makes simple things difficult.

My team is currently working on an ASP .NET website. We are one of the first teams in our organization to use TFS2008 for source control. When I joined the project, it had already been active for a few months. Below is a diagram of the basic file structure we are using in TFS: $/TfsProject/ | | /* Contains our in-house class libraries...

Excluding Multiple Files in TFS Build

I'm trying to exclude a series of files from a custom deployment step in my TFS 2008 build definition. I want to include all files except those starting with either P0 or P1. Here are some of my attempts... <ItemGroup> <FilesToCopy Include="$(BinariesRoot)\Debug\*.*" Exclude="$(BinariesRoot)\Debug\P0*.*;$(BinariesRoot)\Debug\P1*.*" />...

Strange TFS Source Repository Problem

We have a web project we are working on using TFS and we are kind of new to it (TFS). One of my teammates is unable to see a particular page (three associated files) in the IDE. To the rest of us, it looks as though it is checked out to her. When she ran the unlock command through the console, it returned that the files for the page w...

how do I view all of my pending changes in VSTS Source Control Explorer?

I'm relatively new to TFS and perhaps because I'm a novice, I'm not too thrilled with its behaviour. Scenario: I copy a source tree from the TFS server to my local hard drive. I open a solution from my local hard drive by browsing to the .sln file. From the vs Solution Explorer I double-click a .cs file. Even though I'm just looking...

How could the stack trace for my unit test not match the actual source?

In a C# class library, and set of tests. Everything was going well until I added a new set of tests - they run correctly on my machine, but fail on the TFS Build server. The stack trace in the build log makes no sense - the constructor of one class appears to be mapped to one of it's methods. If my class looks a little like this: 1. p...

Changing an array to list in TFS Reports

Creating a report in Team Foundation Server(TFS) and my parameter is set as an array and I want to be able to display this array. I want to be able to switch the array to a list and then be able to show what is selected out of the list by the parameter the user selects. Can someone help please?? :) ...

Share "My Queries" from TFS

I have a few fairly involved work item queries saved in "My Queries" in TFS. I don't want to make them Team Queries because we have too many of those already and most of the team doesn't care about these particular queries. Is there a way to share these queries with the one other member of the team who is interested. Is there a way to...

Team Foundation cannot retrieve the list of team projects from Team Foundation Server

When I'm trying to connect to tfs I got the following error: --------------------------- Microsoft Visual Studio --------------------------- Team Foundation Server TF31001: Team Foundation cannot retrieve the list of team projects from Team Foundation Server UGSERVER. The Team Foundation Server returned the following error: Team Founda...

TFS API - is there a way to get a list of the transitions for a workitem type?

I am trying to get from State "A" to State "X". There are transitions in place that prevent me from just going to X. I can export the WorkItemType as XML and work on that, but before I do that, I thought I would ask if there is a way to get at the Transitions via the API. ...

TF14083: The item {0} has a pending merge from the current merge operation, please resolve and check in the current merge and merge again to pick up this change.

Getting this when trying to merge in TFS2008 any ideas on how to resolve it. There are No pending changes on either source or destination branches. Thanks ...

Unable to get the Latest files from TFS?

First i tried to get the latest files from the TFS , but shows a dialog box stating that i have all the latest files. Then i tried to getting the latest through Get Specific Version, still i was unable to get the latest files. I even tried deleting the workspace. ...

Renaming folders in TFS

I have a folder in Team Foundation Server with several sub-folders: candidates beta1 beta2 rc1 ga I'd like to move three of them under a new folder: candidates defunct beta1 beta2 rc1 ga Each folder contains tens of thousands of files of various sizes. They are all branches of some other folder. I don't have them checked ou...

custom control for TFS work item type

I will explain my question with an example. Lets consider TFS "Bug" work item type. In the bug work item type there is a "Developer" and "Tester" dropdown. Using the inbuilt rule types we can only assign "VALIDUSER" to each drop down. This displays all the windows user in the drop down. I want to be able to create a custom subteam under ...

A way to find out all affected files of a workItem or group of chgsets in TFS 2008?

I'm trying to figure out a way to find out which files were affected by a work item in TFS 2008. I realize that this is a duplication of a question already asked by someone else here - http://stackoverflow.com/questions/2219282/view-a-list-of-all-files-changed-as-part-of-a-workitem-in-tfs but it went unanswered and I've been, off and o...

Migrating test cases & defects from Quality Center to TFS 2008/2010

Tool that can be used to migrate (or even better..synchronize) test cases and bugs between: TFS 2008 and Quality Center 9.2 (or later) TFS 2010 and Quality Center 9.2 (or later) I am aware of the following tools: Test Case Migrator (Excel/MHT) Tool TFS Bug Item Synchronizer 2.2 for Quality Center Also shai raiten mentions on his bl...

TFS - Get a changeset range

Every release I find it a good practice to go back and grab all the changeset notes to compare to the release notes to make sure we didn't miss anything. Since we have a blurb of all feature changes pretty well documented in the changeset notes, they're a valuable resource. What I haven't found is a good way to extract these from TFS 2...

Building java project with TFS

A very small portion of our codebase is some legacy Java code. I'm trying to add a new build that would invoke ant to build this project. The first problem is that TFS doesn't allow you to create a build that doesn't build a .Net solution. I got around this by copying a previous build file and adding an EndToEndIteration task which is...

What permissions are required to create a new work item type in TFS

I am new to creating work item types in TFS and want to create a new Work Item type. I looked at work item template option, but that is not sufficient for me. I need to add few new fields and have a customized form. From search I got information about Work Item Type definition but I am looking for some detailed example. Also I would l...