thingworx-gitbackup-extension
thingworx-gitbackup-extension copied to clipboard
Unable to export ModelTags
When trying to export ModelTags, those are not exported on disk, hence any commits won't include them. The issue is present in the Git.Utility.ThingShape, the ExportProjectEntities, that does not pickup the proper entity type to move to the proper folder. This issue will be fixed in a future release. Until then: -line 67 should be: case "ModelTagVocabulary": -after line 105 add: if (str_EntityType == "ModelTagVocabulary" || str_EntityType == "ModelTag") str_EntityType = "ModelTag";