tfs2008

How do you build from a specific TFS 2008 Changeset in Jenkins?

若如初见. 提交于 2019-12-11 05:47:24
问题 I am attempting to create a manual build in Jenkins that will build a specific changeset of code from TFS for a deployment into a testing / production environment. Currently I am only able to use TFS in Jenkins to pull everything up to the newest Changeset out of TFS. I am running Jenkins version 1.471 with the TFS plugin version 1.20 Has anyone run into the problem, and do you know how to fix it? Thanks in advance. 回答1: This feature is missing, but seems to be under way according to the

In TFS, How do i check if a file is latest or not using C# code?

谁说我不能喝 提交于 2019-12-10 18:55:20
问题 How do i check if all the files in a folder are latest or not. I need to put up a condition in C# code which should get latest version of the project only if there is any file in the project folder having the latest as "No"? Any help wpould be greatly appreciated. 回答1: There's a few ways that you could do this programmatically, but the easiest way is to let the server determine this for you: if you perform a get latest with the preview get option set, it will not actually perform the get, it

Import from Team Foundation Server 2005 into 2008

巧了我就是萌 提交于 2019-12-10 18:45:32
问题 We have an existing TFS 2005 install and a newer 2008. The 2008 server already has some newer projects on it but I am looking to move the older projects from 2005 onto this newer server. Does anyone know an easy way to do this and maintain the audit history rather than just break source control on the project and then add it to the 2008 server? thanks 回答1: I've used the TFS to TFS migration tool to do this: http://www.codeplex.com/tfstotfsmigration You do need to have a copy of SQL local to

TFS to TFS Migration Tool - domain issues

岁酱吖の 提交于 2019-12-10 17:48:19
问题 A 3rd party has developed some applications for us and has been using MS Team Foundation Server 2008 for their source control. My company has recently setup our TFS 2008 environment and we're trying to migrate the source code from the 3rd party developer TFS to our TFS machine. You first thought was to try the backup and restore method of migration but the only SQL Server we have available is a Standard Edition license and the 3rd party developer's SQL Server they are using for TFS is

Baseless merge for multiple non-consecutive changesets

痞子三分冷 提交于 2019-12-10 15:58:16
问题 I'm issuing the following command to TFS: >tf merge /baseless c:\ws\source c:\ws\target /recursive /version:C100~C100 But I have a large list of changesets that need to be merged. Is there a shortcut for this, or some way to specify a list, for example: >tf merge /baseless c:\ws\source c:\ws\target /recursive /version:C100,C108,C110,C800,C1001,etc... 回答1: If powershell is an option, below script should help (not tested!): $cslist = 1,23,45,456,568 #list of all changesets foreach ($cs in

TFS : Can a shelveset be restored to another location?

拟墨画扇 提交于 2019-12-10 14:37:49
问题 I have the following scenario: A user shelves some changes. Time goes by and a new branch of the product is created. Later, it is determined that the shelveset contains code, that we will need in the new branch. By default; Visual Studio can only restore the shelveset changes to the location where they were shelved from. Is it possible to restore my shelveset in the new branch ? I do not want the code to be checked into the original branch, as it would break stuff. 回答1: It is possible with

team foundation server bug tracking tools

被刻印的时光 ゝ 提交于 2019-12-10 12:45:55
问题 I am new to TFS and am told that TFS (VS 2008) has an internal bug tracking system. I have used open source bug tracking systems before but want to work with TFS now. If anyone knows or has links to any readin bout this please answer this question 回答1: Here are some walkthroughs for work item tracking in TFS. This should help get you started. I also recommend the book Software Engineering with Microsoft Visual STudio Team System by Guckenheimer, et. al. 来源: https://stackoverflow.com/questions

Build order and dependencies not preserved on upgrade from VS 2008 to 2010 with msbuild

孤人 提交于 2019-12-10 10:58:49
问题 I'm in the process of upgrading our VS 2008 solution to run on VS 2010 I managed to successfully build in VS 2010 My next step now is to configure a build machine running TFS 2008 Whenever I start a build it does my projects in alphabetical order with no regard for dependencies. I've googled a lot and I can't seem to find a solution to this. The closest solution to my problem is found here: msdn link which links to this: dependency solution However I'm dealing with 129 projects, so I would

How can I add a VS 2010 .Net 4.0 build agent to TFS 2008

穿精又带淫゛_ 提交于 2019-12-09 13:07:42
问题 My company has two development teams using TFS 2008. My team would like to migrate our .Net 3.5 app to the .Net 4.0 framework, but the company is not ready to upgrade TFS to TFS 2010. Can we still use TFS 2008's team build system but with a Visual Studio 2010 solution/project structure that targets the .Net 4.0 framework? I am thinking we would need to add a new build agent to TFS 2008 that would have VS 2010 installed. But I am not finding any information on how to do this. Is this possible?

TFS 2008/2010 vs Jenkins for Continuous Integration

我只是一个虾纸丫 提交于 2019-12-09 04:20:28
问题 Does anyone have specific experiences with using TFS 2008/2010 AND Jenkins for Continuous Integration (CI)? We are trying to decide which CI server to use. Our team works exclusively in Microsoft .NET/Visual Studio 2010/C#. We have the following requirements: Automatically build our web project on every checkin. Run unit tests with each build. Automatically deploy green builds to development and/or test environments. Provide pretty reports. Provide build/deployment notifications via email. I