使用Azure DevOps迁移工具进行迁移时,有没有办法保留原始Id?

使用Azure DevOps迁移工具进行迁移时,有没有办法保留原始Id?,azure,azure-devops-migration-tools,azure-migrate,Azure,Azure Devops Migration Tools,Azure Migrate,我正在使用Azure DevOps迁移工具将我们的工作项从一个组织迁移到另一个组织 ReflectedWorkItemIDFieldName使用如下值填充ID_old 我希望能够将Id=xx从myOldSite迁移到Id=xx从myNewSite,但我无法找到将Id号从旧的Azure DevOps系统迁移到新的Azure DevOps系统的方法 有什么想法吗 我的configuration.json是 { "Version": "8.9", &qu

我正在使用Azure DevOps迁移工具将我们的工作项从一个组织迁移到另一个组织

ReflectedWorkItemIDFieldName使用如下值填充ID_old

我希望能够将Id=xx从myOldSite迁移到Id=xx从myNewSite,但我无法找到将Id号从旧的Azure DevOps系统迁移到新的Azure DevOps系统的方法

有什么想法吗

我的configuration.json是

{
  "Version": "8.9",
  "TelemetryEnableTrace": false,
  "workaroundForQuerySOAPBugEnabled": false,
  "Source": {
    "Collection": "https://dev.azure.com/myOldSite/",
    "Project": "MyProject",
    "ReflectedWorkItemIDFieldName": "Id",
    "AllowCrossProjectLinking": false,
    "PersonalAccessToken": ""
  },
  "Target": {
    "Collection": "https://dev.azure.com/myNewSite/",
    "Project": "MyProject",
    "ReflectedWorkItemIDFieldName": "Custom.ID_old",
    "AllowCrossProjectLinking": false,
    "PersonalAccessToken": ""
  },
  "FieldMaps": [],
  "WorkItemTypeDefinition": {
    "sourceWorkItemTypeName": "targetWorkItemTypeName"
  },
  "GitRepoMapping": null,
  "Processors": [
    {
      "ObjectType": "VstsSyncMigrator.Engine.Configuration.Processing.NodeStructuresMigrationConfig",
      "PrefixProjectToNodes": false,
      "Enabled": true,
      "BasePaths": []
    },
    {
      "ObjectType": "VstsSyncMigrator.Engine.Configuration.Processing.WorkItemMigrationConfig",
      "ReplayRevisions": false,
      "PrefixProjectToNodes": false,
      "UpdateCreatedDate": true,
      "UpdateCreatedBy": true,
      "UpdateSourceReflectedId": false,
      "BuildFieldTable": false,
      "AppendMigrationToolSignatureFooter": false,
      "QueryBit": "AND [System.WorkItemType] NOT IN ('Test Suite', 'Test Plan')",
      "OrderBit": "[System.ChangedDate] desc",
      "Enabled": true,
      "LinkMigration": true,
      "AttachmentMigration": true,
      "AttachmentWorkingPath": "c:\\temp\\WorkItemAttachmentWorkingFolder\\",
      "FixHtmlAttachmentLinks": false,
      "SkipToFinalRevisedWorkItemType": false,
      "WorkItemCreateRetryLimit": 5,
      "FilterWorkItemsThatAlreadyExistInTarget": true,
      "PauseAfterEachWorkItem": false,
      "AttachmentMazSize": 480000000,
      "CollapseRevisions": false
    }
  ]
}

否。ID是系统生成的,不能保证目标系统中的其他工作项没有使用。

否。ID是系统生成的,不能保证目标系统中的其他工作项没有使用。

谢谢。我也期望如此,但只是想问个问题。我将把这个标记为已回答,因为它是尽可能好的!谢谢你,丹尼尔。我也期望如此,但只是想问个问题。我将把这个标记为已回答,因为它是尽可能好的!