tfs2012

Chutzpah running Jasmine in TFS 2012 can't find referenced file under test

核能气质少年 提交于 2019-12-07 09:30:18
问题 I am using Chutzpah to run our Jasmine tests. I have added the Chutzpah dlls to the solution and updated the build to run *.js tests. The project structure is as follows: MyApp.Web Scripts App Home DateControl.js MyApp.Web.Tests Scripts Jasmine lib Chutzpah (dlls) Spec App Home DateControlSpecs.js The Jasmine test file uses a reference tag to reference the file to be tested /// <reference path="../../../../../../App.web/scripts/app/home/datecontrol.js" /> The Jasmine tests are run however I

Work Item Description Height Not Increasing

ぐ巨炮叔叔 提交于 2019-12-07 09:20:07
问题 I am wanting to update some of our TFS work items as users have reported that in the Web Access portal there is a lot of wasted space. What I mean is when we load a work item, and there is as Description text box (type HtmlFieldControl, refname System.Description) then there appears to be a lot of white space between the control and the bottom of the page. When I open the work item in Visual Studio, then it appears fine and the Description fills up correctly. Altering the Height property just

Buid definition: Error HRESULT E_FAIL has been returned from a call to a COM component

时光毁灭记忆、已成空白 提交于 2019-12-07 07:21:17
问题 When I add a new work item to TFS, build definition throw a exception as below: Exception Message: Error HRESULT E_FAIL has been returned from a call to a COM component. (type COMException) Exception Stack Trace: at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.DataStoreNative.BeginDataStoreInit(IntPtr handle, String defaultCachePath, String instanceId, Int32 cacheVersion) at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.Datastore.BeginDataStoreInit(String

Sending out email alert when a test case is pass or fail

时光总嘲笑我的痴心妄想 提交于 2019-12-07 04:15:34
问题 i want to send an email alert to the user when a test execution result is pass or fail or any other status when it is executed on test manager. i know test manager can not do it yet the TFS can, i have tried various combination of queries to set an alert for the same. I want to do it for an automated test case. the build i'll create will not be changing much as i am up to testing of services. only test cases will be executed on the same build and results are to be displayed. 回答1: If you start

How to fix TF246017 The Team foundation server could not connect to database

自作多情 提交于 2019-12-06 21:02:40
问题 I'm getting nothing but this error TF246017 I'm not able to access TFS as admin or domain user While accessing administration console, showing the error TF246017 Domain users getting TF31001 where the server returns TF246017 TFS was working fine with SQL Server 2008. And now we have also installed SQL server 2012 in the same machine.( I believe it doesn't connected anyway to tfs server) But, even after uninstalling SQL 2012, it displays the same error In application tier/ database tier,

What's missing in TFS Express?

限于喜欢 提交于 2019-12-06 18:49:14
问题 I know there are some limitations to use the express edition of TFS: only compatible with SQL Express, no reporting service. Can anyone tell me more? 回答1: I googled 'TFS Express Limitations' The Express edition is essentially the same TFS as you get when you install the TFS Basic wizard except that the install is trimmed down and streamlined to make it incredibly fast and easy. In addition to the normal TFS Basic install limitations (no Sharepoint integration, no reporting), TFS Express: Is

TFS 2012 and VS 2010

梦想的初衷 提交于 2019-12-06 18:31:19
问题 I was very excited to hear TFS 2012 made a step towards distributed source control in allowing source code to be modified (without major issues) when TFS is offline. I currently use a hosted TFS service, so im hopeful the migration to TFS2012 should be painless. At least for me anyway. So my question is simple, is there such a thing as TFS2012 powertools for VS2010 or is TFS2012 only available for VS2012? Appreciate your comments. 回答1: You can connect to TFS 2012 from VS 2010, but you'll need

“TF14045: The identity <guid> is not a Recognized identity” with TFS 2012 update 4 after upgrade from 2010

二次信任 提交于 2019-12-06 15:24:43
问题 We recently migrated from TFS 2005 to TFS 2010 to TFS 2012 (Update 4) TFS 2005 to TFS 2010 was done through a upgrade process. TFS 2010 to TFS 2012 was done through a detach (from TFS2010 box) and re-attach method (on TFS 2012 box) One of our users is getting the following error. “TF14045: The identity is not a Recognized identity” The problem seems to be related to his machine name & workspace. When I try to search TFS workspaces by computer name using Team Foundation Sidekicks 2012, I get

TFS Change server port and visual studio 2012, problems

自闭症网瘾萝莉.ら 提交于 2019-12-06 12:18:58
问题 I have been using tfs with no problems on local network with port 8080. Then i decided to change the port.... why o why did i bother. I have had a terrible few hours trying to sort it. Searched goggle for fixes etc. I think i now have it working but only after reall problems, this then makes me wander and worried about how to from visual studio 2012: have a local area network conenction to tfs: servername:9876 remote connection: domain name: domain.com:9876 both of which map to the same

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

风格不统一 提交于 2019-12-06 11:09:49
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.Direct, ReadIdentityOptions.ExtendedProperties); var emailAddress = member.GetAttribute("Mail", null) This