I'm looking for a way to retreive enumeration value stored in an MS Project custom field. I've been able to use C# and MS Project PSI to retrive values of base type ProjectDataSet.TaskCustomFieldsRow
, but when I read data from a custom field which is an enumeration, all the data I get is
FIELD_TYPE_ENUM = 21
CODE_VALUE = some-GUID-here
What do I do next with this GUID to retreive the value I need?