Questions tagged [azure-devops-server]

Azure DevOps Server (formerly Team Foundation Server or TFS) is the latest iteration of Microsoft's DevOps and ALM product suite which contains source control (Azure Repos), CI/CD (Azure Pipelines), agile work and portfolio management (Azure Boards) etc. Use this tag for questions on the on-prem version, as opposed to Azure DevOps Service, which is the cloud version.

Azure DevOps Server (previously known as TFS - Team Foundation Server) is the home for your project data in the cloud and provided by Microsoft.

Questions about Azure DevOps Server may be more appropriate at one of the other Stack Exchange sites, such as

Azure DevOps includes:

  • Azure pipelines CI/CD that works with any language, platform, and cloud. Connect to GitHub, Azure Repos or any Git repository and deploy continuously.
  • Azure boards Powerful work tracking with Kanban boards, backlogs, team dashboards, and custom reporting.
  • Azure artifacts Maven, npm, and NuGet package feeds from public and private sources.
  • Azure repos Git repos for your project. Collaborative pull requests, advanced file management, and more.
  • Azure test plans All in one planned and exploratory testing solution.

Updates

The current cadence of Azure DevOps Server releases is annual, with versions named by the year they were released (Azure DevOps Server 2019, Azure DevOps Server 2020 etc.). Feature timeline for both on-prem and cloud version can be found here

Tag usage

It is recommended to use the tag along with the specific product area tags and specific version tags:

Other resources

We have channels that you can also voice your concerns, FAQs, documentation and submit an idea:

143 questions
1
vote
1 answer

Error The work item type Product Backlog Item cannot be found

Fixed: Turns out I had to change the project to my InheritedProcess containing the ReflectedWorkItemId for it to work. My migration just ran. Thanks for the help! Please close this! I'm trying to use this migration tool to test out a migration. I…
1
vote
1 answer

Not able to add external users to Azure DevOps server project

I have admin rights to our Azure DevOps server and I manage projects, user access etc.. Recently I got a request to add users from external domain to a project in a collection. I know the process to add users from external domain to projects in…
1
vote
1 answer

How to upgrade a Team project to use the Inheritance model

We are using Azure Devops Server 2020 and have a project using the XML process model. The project belongs to an old collection which do not support the Inheritance model. When reading the article below I get the feeling it's possible to upgrade to…
Janni Kajbrink
  • 661
  • 2
  • 7
  • 21
1
vote
2 answers

Is it possible to clone an Azure Devops repository using an OAuth token

I am trying to implement an integration between a web-based code editor and Azure Devops. I am trying to use OAuth to get user authorization and then to make a clone of a repository on behalf of the user. For GitHub I can use the OAuth access token…
1
vote
1 answer

Azure DevOps Server 2020 - Reconfigure Search

I recently installed Azure DevOps Server 2020 and at the time of installation I set the Search Service User to a specific AD user group that I had planned on using later on for search in TFS/Web UI. According to the Microsoft documentation below,…
1
vote
1 answer

How To Restrict Transaction between states in azure devops server?

I am decided to restrict transaction between two states in azure devops server in inherited process but i donot know support or not? if support , how to do it? i read this link but not found in my azure devops web admin
1
vote
1 answer

How to open Bugs/PBIs in Visual Studio instead of a web browser when connecting to Azure DevOps Service?

I want to implement Team Foundation Server (now known as Azure DevOps Server) for source control and issue tracking. I have only used the on-premises solution previously. For this particular use case, it would be beneficial to have it hosted in the…
1
vote
1 answer

Why is pulling a base image taking extremely long time on azure pipline?

I want to build an Windows docker image on azure piplines. Pulling the base image is taking up to 20 minutes. How can i speed up the docker pull? I want to use the azure hosted pipline I cannot use the cached images on the agent Example Script…
1
vote
2 answers

VSTest: Order the execution of test assemblies

Our codebase has more than 100 projects with tests in each. Some test assemblies take more time while some other assemblies are taking less time for the execution of the tests. The Azure DevOps Server is running our whole test suit in parallel,…
F. Baum
  • 301
  • 1
  • 5
  • 17
1
vote
0 answers

Getting "403 : forbiden" on Team Founation Server over API Remote access

I am trying to update my test results using the Microsoft.TeamFoundationServer.Client nuget package. Hence, I am using c# code. I connect to our server using Personnal Access Token (PAT) having full access Method called for update is the following…
Nick King
  • 300
  • 2
  • 14
1
vote
1 answer

Using custom effort with Azure DevOps Server

Everyone! I'm current working on a company that just started to use Azure DevOps Server. We're used to classify our work items using S for Small, M for Medium and L for Large. As an internal convention, the proportion between them is: 1 Medium = 2…
1
vote
2 answers

Test results for ordered test are grouped in Azure Devops pipeline

I am running a few ordered tests using Azure DevOps pipelines. The result for the tests is grouped into a single ordered test. It is becoming very difficult to interpret the result. Is it possible to obtain a separate pass/fail result? In the…
1
vote
1 answer

DevOps Server Activation

We are running a trial version of the DevOps server on-premise. I'm trying to activate it so we aren't on the trial version any more. Our company developers each have a VisualStudio Enterprise subscription, my understanding of this…
user3103055
  • 35
  • 1
  • 6
1
vote
1 answer

Does installing Azure DevOps Server uninstall older instances of TFS?

I have not migrated TFS to Azure DevOps Server, I installed the evaluation version of Azure DevOps Server separately so that they would run alongside each other on the same machine and we could evaluate how it performs compared to our old TFS…
TridentTrue
  • 183
  • 4
  • 14
1
vote
4 answers

Using TFS Rest API works from curl but not from client dotnet library

I'm using the following code from the library Microsoft.VisualStudio.Services.Client: var credential = new VssBasicCredential("", ""); var url = """; using var vssConnection = new VssConnection(new Uri(url), credential); await…