Hi @burningice
For uninstalling you can use the following code:
var typeDescriptor = DynamicTypeManager.GetDataTypeDescriptor(typeof(....))
DynamicTypeManager.DropStore(typeDescriptor)
you can use it in a package fragment uninstaller, right before removing the dll.
For uninstalling you can use the following code:
var typeDescriptor = DynamicTypeManager.GetDataTypeDescriptor(typeof(....))
DynamicTypeManager.DropStore(typeDescriptor)
you can use it in a package fragment uninstaller, right before removing the dll.