Azure Devops 创建项目库

AzureDevops create project library

我想通过C#创建项目、用户等。 Microsoft 提供了一个库,用于添加工作项、评论... (see here). Is there something similar for creating projects and users? I only found the documentation for the API here.

Is there something simular for creating Projects and users?

您可以使用ProjectHttpClient.QueueCreateProject方法创建项目。它来自 Microsoft.TeamFoundation.Core.WebApi.dll,也包含在 Azure Devops Service .net SDK 中。 (就像你问题中分享的 WorkItemTrackingHttpClient class)

下面是关于如何使用 C# 客户端 api 创建项目的 official sample