Replies: 2 comments 7 replies
-
The For work item migrations, |
Beta Was this translation helpful? Give feedback.
-
Yes, custom fields have been added to Bug and User Story, but we don't have access to the WITs like in ADO / TFS Server. Just the web client configuration for adding fields to the standard process selected at project creation time. Can't even download WITs to get to the "nitty gritty" for this project. What kind of change would cause that error? |
Beta Was this translation helpful? Give feedback.
-
Using version 16.0.4
We have been successful going TFS Server to ADO Server using the TfsTeamProjectEndpoint for source and target. When I change the URL to Azure Services I end up getting an exception as the utility tries to iterate through.
This led me to believe I needed to use the AzureDevOpsEndpoint type and the WorkItemTrackingProcess (WorkItemTrackingProcessorOptions) instead of the the TfsWorkItemMigrationProcessor. However, when I try this I get an exception:
Unable to cast object of type 'MigrationTools.Endpoints.AzureDevOpsEndpoint' to type 'MigrationTools.Endpoints.IWorkItemSourceEndpoint'
I've tried various other configurations, but above is the "closest" I have gotten to anything working. I have attached my configuration
This is my endpoint definition:
"SourceAzure": {
"EndpointType": "AzureDevOpsEndpoint",
"AccessToken": "*****************************",
"AuthenticationMode": "AccessToken",
"Organisation": "https://project.visualstudio.com",
"Project": "Source Project",
"ReflectedWorkItemIdField": "DUMMY.VALUE"
},
processor definition
{
"ProcessorType": "WorkItemTrackingProcessorOptions",
"Enabled": true,
"SourceName": "SourceAzure",
"TargetName": "Target",
configuration-sample.json
configuration-sample.json
Beta Was this translation helpful? Give feedback.
All reactions