tfs2012

TFS 2012 Configure Features Error - Unable to configure Planning Tools

断了今生、忘了曾经 提交于 2019-12-10 19:34:32
问题 When trying to "Configure Features" after upgrading to TFS 2012 to enable Code Review, My Work, Feedback, Planning Tools, and Storyboarding we're getting the following error: [Error] TF400654: Unable to configure Planning Tools. The following element contains an error: BugWorkItems/BugWorkItems. TF400507: Each work item type must support an initial state value that matches one of the states defined in: BugWorkItems. The following work item types have initial states that do not include any

Team Foundation Server 2012 and GIT

点点圈 提交于 2019-12-10 19:18:20
问题 Is it possible to build projects created in vs2012, manually pushed to my git repository with Team Foundation Server 2010/12? In the other words: Can I choose my git repository path as source, to build it with TFS? I've chosen TFVC as source control because TFS2012 doesn't support git as source control yet. I know I can do this in Team Foundation Service but I don't want to use it. 回答1: It should be possible now, keep in mind as well that the Update 2 for VS 2012 added GIT support.Take a look

Unable to find type [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]

你说的曾经没有我的故事 提交于 2019-12-10 19:18:13
问题 I'm trying to queue a build from Powershell specifying Process Parameters. I'm getting the following error ... any ideas what I'm doing wrong? Unable to find type [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers] : make sure that the assembly containing this type is loaded. At line:19 char:1 + $paramValues = [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]::Deseri ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo :

Missing vcxproj.filters files in projects converted from VS 2010 to VS 2012

丶灬走出姿态 提交于 2019-12-10 18:53:59
问题 I am moving my solution to a TFS environment. several (8) "old" C++ projects that were created in VS 2010 and migrated to VS 2012 are missing the vcxproj.filters file. These projects appear happy and content to live without the .filters, but when I try to add them to TFS 2012 from within visual studio (not from the external source control tool) in order to have a source-control binding in the project file, I get errors due to the missing filters file. Did anyone encounter a similar problem?

'AssemblyInfoFileMask' is not declared. It may be inaccessible due to its protection level

跟風遠走 提交于 2019-12-10 18:34:30
问题 I am creating a custom build tfs activity to be used inside the azure continuous integration. I have used the code from this blog: http://www.ewaldhofman.nl/post/2010/06/01/Customize-Team-Build-2010-e28093-Part-10-Include-Version-Number-in-the-Build-Number.aspx As you can see AssemblyInfoFileMask in the code below its public. Also please check the screenshot to see what I meant, BuildDetail its on the same class and doesnt show me the error in the blue icon. I will paste it here the code as

Replicate Team foundation server project to another team foundation server

邮差的信 提交于 2019-12-10 12:16:32
问题 Currently I am working on a teamfoundationserver1. I want to replicate my project from teamfoundationserver1 to my local teamfoundationserver2. Please suggest me the steps to perform this action. I am novice in this so please suggest me a good article or step by step implementation of this. 回答1: My suggestion, based on what you've said you require would be: Install TFS Power Tools. Map source directories for teamfoundationserver1 and teamfoundationserver2 . Create the team project in

How to retrieve the ID of the workitem that started an automated test

流过昼夜 提交于 2019-12-10 11:42:07
问题 Introduction: In VS2012, we have a set of workitems that are planned to be automated. I created a set of automated tests through SpecFlow in VS2010. To connect a workitem with an automated test, I have to select the workitem and search for the automated test that can only be exactly one method. The drawback is that with a large amount of TestMethods (and we have), the list is very long. It will be a tedious task to connect a WorkItem with the corresponding TestMethod. Thereby, lots of our

Using the TFS 2012 API, how do I get the email address of a user?

匆匆过客 提交于 2019-12-10 10:29:50
问题 I am trying to get the email address of a particular user in TFS 2012 using the API. I have set the users Preferred Email address in the Profile section. I have done plenty of searching online and have the following code. var userId = "myUserId"; var collection = new TfsTeamProjectCollection(tfsUri, tfsCerd); var managementService = collection.GetService<IIdentityManagementService>(); var member = managementService .ReadIdentity( IdentitySearchFactor.AccountName, userId, MembershipQuery

What is the “deployed” tab for in TFS 2012 Web Access

一个人想着一个人 提交于 2019-12-10 09:23:58
问题 I have several build definitions setup in TFS 2012. They all use Web Deploy and Web Packages and deploy to my dev and test servers and work just fine. I can't, however, figure out what the "deployed" tab in TFS Web Access > Builds is used for? 回答1: The 'deployed' tab seems to be related to Azure integration somehow. I found this post on the TFS Deployer website. It's even possible to mark a build as 'deployed' via PowerShell, which seems quite interesting. It would be nice to have our

Can I modify the default Check-in Action in TFS 2012?

丶灬走出姿态 提交于 2019-12-10 04:41:12
问题 I want to associate a changeset with a workitem as default to associating it in TFS 2012 . Trying HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\**11.0**\TeamFoundation\SourceControl\Behavior @ResolveAsDefaultCheckinAction = "False" is not useful for tasks which "State" is "Active" . It is ok when the state is "New", "Proposed" etc... Do you have any idea to do this for all states? 回答1: It's a long story, The workaround that will work will be as the following: Checkout this link here http: