Replies: 1 comment 4 replies
-
You are right, we don't have any facilities for that. How would you change the FieldToFieldMap to support what you want without hard coding specific types? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm attempting to migrate a Team Project hosted on Azure DevOps Server 2019 ("source system") to Azure DevOps Services ("target system"). The problem I see is that the underlying data type of the work item fields on the source system sometimes differ from the data type of the work item fields on the target system.
For example, a field on the source system is using a
double
as data type and thus can store values such as3.5
,1.234
, etc. But the field that it is to map to on the target system is using aninteger
as data type.Does Azure DevOps Migration Tools offer any kind of support for data type conversions?
A quick inspection of the source code did not reveal anything. Specifically, in the class
FieldToFieldMap
I see the below code which simply copies the values.Beta Was this translation helpful? Give feedback.
All reactions