Menu
  • HOME
  • TAGS

Create Team Project in TFS2015 in Team Web Access without Visual Studio?

tfs,tfs2015

This is not currently possible.

TFS Server plugin fails after upgrade from TFS2012 to TFS2015 RC

plugins,tfs2015

Finally found the cause of this: Apparently, the Validate() call validates against the whole ProcessConfiguration.xml. Because in TFS2012 there were both AgileProcessConfiguration and CommonProcessConfiguration, there were underlying problems with the workitem states. After resolving those issues in the correct ProcessConfiguration file, the plugin was working again (and, TFS could also...

Getting git items for a particular branch/tag via TFS rest api

tfs,visual-studio-online,tfs2015

Yes you can. As or the link that you have above you can use the provided so to retrieve both branches and yes. In git they are really all the same thing, pointers. This use the "refs" api. https://www.visualstudio.com/integrate/api/git/refs...

Could not load file or assembly while configuring Build vNext Agent

tfs,build,team-build,ctp,tfs2015

After downloading the latest version of the VSoAgent.zip file the problem went away. It seems to have been fixed in a newer release of the Agent.

Where can I find Microsoft.TeamFoundation.Build.Client in Visual Studio 2015?

tfs,msbuild,visual-studio-2015,tfs2015

Microsoft.TeamFoundation.Build.Client.dll still ships with VS 2015. For the 2015 release, we have removed the client OM DLLs from the GAC. In the RC release you can find the DLL in c:\program files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer. It's kind of an obscure place. We plan to provide a NuGet package...

What is the safest path and order of operations for TFS 2012 to TFS 2013 or TFS 2015 RC upgrade and hardware migration?

sql-server,tfs,tfs2013,tfsintegrationplatform,tfs2015

You should move to new hardware as part of the move. Setup a new box with the buys that you want, TFS 2015 (unconfigured), SQL 2014, and SharePoint 2013. Then restore all of your old server backups to the new server. The upgrade wizard takes care of almost everything. The...

TFS 2015 RC Collection upgrade failed

tfs,tfs2015

I already found solution. Here is solution i found based on information provided by MS person. https://connect.microsoft.com/VisualStudio/feedback/details/1289654 I Installed again TFS 2013 Update 4 and setup all services like before i started upgrade process to TFS 2015 RC. Detached problematic collection (there were few warnings about SQL server edition features...

How to authenticate build.vnext agent to on-premise TFS

build-server,tfs2015

OK I managed to resolve the issue like this: create a user TFS\remotebuild on the TFS server gave this local user access to the TFS Agent Pools gave this local user access to TFS Source Control created a user BUILD\remotebuild on the Build server with same password as TFS\remotebuild when...

Get Build status by Commit SHA1

rest,tfs,continuous-integration,teamcity,tfs2015

I don't believe this can be done without iteration, which is a little annoying You can view changes by hash /httpAuth/app/rest/changes?version:SHA_HASH and you can find changes by build locator /httpAuth/app/rest/changes?locator=build:(id:BUILD_ID) but you can't go the other way, otherwise this could be done simply. The buildLocator doesn't allow you to query...