The type variable does't import from servoy 5.2.8 to 6.0

In developer 5.2.8 when you define the globals variable and put type media.
Than you change to an Array for example.

/**
 * @type Array
 * 
 * @properties={typeid:35,uuid:"FBC1B500-82DF-434E-9B67-CABBB717E3F9",variableType:-4}
 */
var ssSecurity = null;

Than you export the solution and import in the servoy 6.0 and that variable does’t import

/**
 * @properties={typeid:35,uuid:"065BF7A4-2FE1-4874-867A-C6800CD8B795",variableType:-4}
 */
var ssSecurity = null;

Thanks

so if i make a simple solution with only that variable, i export it in 5 i can’t import it in 6?
Only because of that doc? I can’t really believe that. that doc is not really a factor for servoy.

I understood that only the @type is lost after the import…

ahh yes that is a limitation of 5.x

The doc is not kept in the export. its just generated again.

You shouldn’t use Servoy export/import to transfer your source (thats kind of a binary transfer)

Source should be done by something like SVN.

Or you could even just copy over project from the workspace dir.
(or use eclipse import/export through an archive file)