tfs2010

How do I change Process Template on an existing Team Project in TFS 2010?

…衆ロ難τιáo~ 提交于 2019-11-27 11:09:59
问题 How do I change process template to MSF for Agile on an already existing team project in TFS 2010? We have upgraded our TFS 2008 to 2010, and now I would also like to change the process template to MSF for Agile (currently CMMI). We haven't used the workitem functionality much so if some information gets lost in the conversion doesn't matter. 回答1: Once you've created a Team Project, you unfortunately can't just upload a new process template. As Robaticus says, you'll have to download the XML

How to undo another user's checkout in TFS via the GUI?

痞子三分冷 提交于 2019-11-27 10:10:02
As the resident TFS admin, on occasion I am asked to undo a checkout (usually a lock) that a user has on a certain file. This can be done via the command line using the TF.exe utility's Undo command (see http://msdn.microsoft.com/en-us/library/c72skhw4.aspx ), but that's kind of a pain. Is there a way to undo another user's checkout via the GUI? brett rogers Out of the box, no, but there are at least a couple of options via add-ons. TFS Power Tools TFS Power Tools (Visual Studio 2010) TFS Power Tools (Visual Studio 2012) TFS Power Tools (Visual Studio 2013) TFS Power Tools (Visual Studio 2015)

Retrieving work items and their linked work items in a single query using the TFS APIs

时光怂恿深爱的人放手 提交于 2019-11-27 09:15:43
Does anyone know if it is possible to retrieve a list of work items and their linked work items in one trip from TFS using their TFS API web services? At the moment, we are having to make a second call for each of the work items made during the first call, and is introducing a performace issue. If that is not possibly, is there a way to peek at the type of the linked work item without retrieving them (e.g. See if it is a task or issue) ? The article you 're referring to in your answer presents with a method to do what you 're after, using WIQL . Certainly, not a bad choice. Another way, in my

Visual Studio 2008: Can't connect to known good TFS 2010

走远了吗. 提交于 2019-11-27 09:12:36
问题 A freshly installed TFS 2010 is at http://serverX:8080/tfs . A Windows 7 developer machine with VS 2008 Pro SP1 and the VS2008 Team Explorer ( no SP ). The TFS 2008 Service Pack 1 didn't work for me - "None of the products that are addressed by this software update are installed on this computer." The developer machine is able to browse the TFS site at the above URL. The Issue is around trying to add the TFS server into the Team Explorer window in Visual Studio 2008. Here's a screenshot

Show all changesets between two labels

限于喜欢 提交于 2019-11-27 07:54:24
问题 In TFS2010 each build is associated with a label by the build server. Our SCM management wants to see all the changesets and related workitems between two labels. Mostly those labels are builds that have a build quality "Released". This way all changes between two delivered builds can be reported. How is this done in TFS 2010 ? 回答1: I don't think you want to use the label, I think you want to use the date/time of the build(s). Labels are easily mutable and don't necessarily represent a point

How to remove a specific ChangeSet in TFS 2010?

巧了我就是萌 提交于 2019-11-27 07:47:50
问题 How to remove a specific changeset in tfs2010? I have changeset version numbers with 545, 544, 543,542. Now, I am looking to delete the particular changeset 543 only in tfs? 回答1: You have to Rollback the changeset, you can't delete a changeset. (Rollback Command) In your case a simple Rollback command would be like this: TF rollback /changeset:C543 回答2: You cannot delete a changeset in TFS. Even if you could somehow, (I think you can run a sql query against the TFS database to do that) its

TF30040: The database is not correctly configured

女生的网名这么多〃 提交于 2019-11-27 07:23:25
问题 I inherited a TFS 2010 server and I am attempting to use the Administration Console to perform some tasks (add a new project collection, add a console user, etc.) and it gives me this error: TF30040: The database is not correctly configured. Contact your Team Foundation Server administrator. I have tried viewing the eventvwr logs but nothing is mentioned about this error. I think TFS setup SQL Server 2008 automatically when it was installed. Any ideas on how to resolve this? 回答1: I figured it

TFS 2010 Branch Across Team Projects - Best Practices

帅比萌擦擦* 提交于 2019-11-27 07:16:55
I'm having issues understanding how to configure TFS according to best practices as provided by the TFS Ranger team. The issue is such: My company has several products which make use of a shared common code base. > $/Core > -> /Main/Source (Parent Branch) > > $/Product1 > -> /Main/Source > -> /Main/Source/Core/Source (Child Branch from $/Core) > -> /Main/Source/... > > $/Product2 > -> /Main/Source > -> /Main/Source/Core/Source (Child Branch from $/Core) > -> /Main/Source/... Therefore we have one team collection and say, three team projects for this example. ($/* is a team project) Our initial

How to get BuildNumber in .proj (MSBuild) using TFS server

北慕城南 提交于 2019-11-27 06:16:59
问题 We use TFS 2010 with VS 2010 for PHP web projects. Actually we do not have any .proj or .sln file, so i have made my own to make builds, it looks like this: <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/> <ItemGroup> <ZipFiles Include="**\*.*"/> </ItemGroup> <Target Name="Zip" > <Zip Files="@(ZipFiles)"

How to have TFS 2010 detect changes done to files outside of Visual Studio?

橙三吉。 提交于 2019-11-27 06:02:01
I'm using Team Foundation Server 2010 with Visual Studio 2010. Whenever I modify a file outside of Visual Studio, TFS doesn't seem to detect the change done to the file, and thus doesn't offer me the option to check-in the file after it has been modified. How can this be solved? Edward Thomson If you have a network connection to your server while you're working outside of Visual Studio, it's probably best to go ahead and check the file out before editing it, either using the tf command line client, or using the Windows Explorer shell integration that's available in the TFS Power Tools release.