tfs

Use Team Foundation Server in Delphi 7?

白昼怎懂夜的黑 提交于 2020-01-12 06:20:10
问题 I'm a .NET developer and use VS2008/TFS2008. Recently, another developer has left our company and now I have to maintain his code. He was a Delphi developer (Delphi 7 mostly, but also Delphi 2007) and he didn't use any source control. Is there a way to put his code in Team Foundation Server? Integration in the Delphi IDE is a big plus. 回答1: To get IDE integration with TFS in Delphi 7, you need can use the MSSCCI provider for TFS in conjuction with SourceConnexion which gives MSSCCI support to

How can I retrieve a list of workitems from TFS in C#?

旧时模样 提交于 2020-01-11 18:50:34
问题 I'm trying to write a project reporting tool in WPF / C#. I want to access all the project names on our TFS (Team Foundation Server), and then display statistics for each work item in a given project. I've got the project names, but getting the actual work items is what's giving me a hard time. Here's what I've got so far: public const string tfsLocation = "http://whatever"; // get the top list of project names from the team foundation server public List<string> LoadProjectList() { var tpc =

Is the Subversion 'stack' a realistic alternative to Team Foundation Server?

久未见 提交于 2020-01-11 17:07:29
问题 I'm evaluating Microsoft Team Foundation Server for my customer, who currently uses Visual SourceSafe and nothing else. They have explicitly expressed a desire to implement a more rigid and process-driven environment as their application is in production and they have future releases to consider. The particular areas I'm trying to cover are: Configuration management (e.g., source control) Change management (workflow and doco for change requests, tasks) Release management (builds and

Create Large Amount of Work Items in TFS Using Javascript REST API

佐手、 提交于 2020-01-11 13:37:10
问题 I need to create around 6000 work items via my TFS extension. I use typescript and REST API in my extension. below is the code I use to create work item var ops = [ { path: "/fields/System.Title", op: "add", value: "Hello world" } ]; var options = { url: 'http://localhost:8080/tfs/DefaultCollection/Agile Git/_apis/wit/workItems/$Bug?api-version=2.2', username: 'username', password: 'password', domain: 'domain', method: 'PATCH', headers: { 'Content-Type': 'application/json-patch+json' }, body:

TFS: Work item type is not allowed to be added as a link

和自甴很熟 提交于 2020-01-11 13:25:49
问题 I just finish to generate my custom WIT (work item type= CRM Case), I add the relative information in the categories s child of RequirementCategory: <?xml version="1.0" encoding="utf-8"?> <cat:CATEGORIES xmlns:cat="http://schemas.microsoft.com/VisualStudio/2008/workitemtracking/categories"> <CATEGORY refname="Microsoft.FeatureCategory" name="Feature Category"> <DEFAULTWORKITEMTYPE name="Feature" /> </CATEGORY> <CATEGORY refname="Microsoft.RequirementCategory" name="Requirement Category">

TFS: Work item type is not allowed to be added as a link

霸气de小男生 提交于 2020-01-11 13:25:30
问题 I just finish to generate my custom WIT (work item type= CRM Case), I add the relative information in the categories s child of RequirementCategory: <?xml version="1.0" encoding="utf-8"?> <cat:CATEGORIES xmlns:cat="http://schemas.microsoft.com/VisualStudio/2008/workitemtracking/categories"> <CATEGORY refname="Microsoft.FeatureCategory" name="Feature Category"> <DEFAULTWORKITEMTYPE name="Feature" /> </CATEGORY> <CATEGORY refname="Microsoft.RequirementCategory" name="Requirement Category">

How to get TFS user groups and users in particular group using TFS API?

£可爱£侵袭症+ 提交于 2020-01-11 12:20:52
问题 I want to list TFS user groups in a DropDown and based on selection of user group I need to populate users in that particular group using TFS API. 回答1: This page has several examples: http://blogs.microsoft.co.il/blogs/shair/archive/2009/01/14/tfs-api-part-4-get-tfs-user-list-mail-sid-account-domain.aspx The last example is probably the most relevant. IGroupSecurityService gss = (IGroupSecurityService)server.GetService(typeof(IGroupSecurityService)); Identity[] UserId = gss.ReadIdentities

TFS Incremental build error - Unable to perform the get operation because the file already exists locally

主宰稳场 提交于 2020-01-11 09:25:27
问题 I'm trying to enable incremental build of my VS solution. In the GUI for xaml build process template, I set "Clean Workspace" to "None" and added /p:IncrementalBuild=True as an MSBuild argument. I then checked in changes to a file, but when I run my TFS build, I immediately get the following error: Unable to perform the get operation because the file already exists locally Exception Message: One or more errors occurred while performing a Get operation. (type GetException) Exception Stack

TFS Build 2013 - using Visual Studio 2015

做~自己de王妃 提交于 2020-01-11 07:55:10
问题 I have been having a bit of trouble getting Build on TFS 2013 to work when using Visual Studio 2015 for the checking in of files. The solution/project that I am working on was created on VS 2015 (.NET 4.6) and I seem to be having troubles building it on my TFS 2013. I was firstly getting an error: Confirm that the path in the declaration is correct, and that the file exists on disk But I seem to have overcome this by adding: /p:VisualStudioVersion=14.0 against the MSBuild Agent. That overcome

Access the Kanban Column (a Team-Specific Field) for a Work Item

久未见 提交于 2020-01-11 01:28:08
问题 Is there a way to programmatically access the "Kanban Column" for a WorkItem using the TFS 2012 API? Using the Scrum 2.2 template, the history of a Bug or Product Backlog Item shows "[MyProject\MyTeam] Kanban Column" as a changed field whenever a work item is dragged between Kanban columns on the Board, but the field is not accessible when specifically retrieving a work item through the TFS API. It also shows up as a changed field in the WorkItemChangedEvent object when implementing the