[Solved] Team Foundation Server Build [closed]

You can build projects directly from visual studio, from a command prompt using msbuild – what TFS gives you (in brief) is the ability to set up continious integration, so a build is automatically initiated when a member of the team checks in – and you can hook in mail to notify team members if … Read more

[Solved] If Bugs are on the same level as PBIs, how do I know where the bug came from in TFS 2015? [closed]

Actually you just need to associate the work items (PBI > Bug > Task). Once the association is created, then you can find the linked work items under Related Work. In my opinion, both options are OK. The two options you mentioned only reflect how the work items shown on backlogs and boards. But if … Read more

[Solved] Migrating from On Premisis Source Control to Cloud

To move all your branches and history from 1 repository to another: Create an empty repository in your Azure DevOps project Clone your current repository (from TFS) using git clone –mirror $URL Add a new remote pointing to your Azure DevOps repository Push to the new remote How the current man-page explains –mirror: Compared to … Read more

[Solved] Issue with API Deleting for Team Foundation Server TFS

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.VisualStudio.Services.Common; using Microsoft.VisualStudio.Services.Client; using Microsoft.TeamFoundation.SourceControl.WebApi; using Microsoft.VisualStudio.Services.WebApi; namespace ConsoleAppX { class Program { static void Main(string[] args) { VssCredentials creds = new VssClientCredentials(); creds.Storage = new VssClientCredentialStorage(); VssConnection connection = new VssConnection(new Uri(“https://tfsuri”), creds); TfvcHttpClient tfvcClient = connection.GetClient<TfvcHttpClient>(); TfvcItem ti = tfvcClient.GetItemAsync(“ProjectName”, “$/FilePath”,”FileName”).Result; TfvcChange … Read more

[Solved] How can i minimize the source code theft in visual studio 2010/TFS

Store all of your developer infrastructure (developer workstations, TFS infrastructure, etc) in an isolated building. This building should have no internet access whatsoever. Post security guards outside the building. Armed is preferable, but not strictly necessary. Each person entering the building should be stopped by the security guards and forced to surrender all personal effects … Read more