add signed assembly builds
Would be nice to hear from you as you are making progress. I added ticket [#10] for this issue.
add signed assembly builds
add 64bit build
I don't know anything 'bout Enterprise Architect. But I googled your error message and it says "in most of cases, the reason is the lack of signing". You should try to build the DLL with signing, also watchout for 32 vs 64 bit assembly builds. Here are two links: https://stackoverflow.com/questions/290980/error-a-strongly-named-assembly-is-required https://medium.com/@ShaoWenbinSaleh/fix-error-a-strongly-named-assembly-is-required-in-visual-studio-9cad3e7327dd HTH, Tobias
I don't know anything 'bout Enterprise Architect. But I googled your error message and it says "in most of cases, the reason is the lack of signing". You should try to build the DLL with signing, also watchout for 32 vs 64 bit assembly builds. Here are two links: * https://stackoverflow.com/questions/290980/error-a-strongly-named-assembly-is-required * https://medium.com/@ShaoWenbinSaleh/fix-error-a-strongly-named-assembly-is-required-in-visual-studio-9cad3e7327dd HTH, Tobias
Thank your for your feedback! In the meantime I managed to build and debug the project with SharpDevelop. I think I found the bug on line 361 in MatFileReader.cs. This padding calculation went wrong for the matlab structure in your code example (having only one field and this only field having a short name): // padding after field names int padding = (tag.Size % 8) != 0 ? 8 - tag.Size % 8 : 0; I commited a fix to the SVN trunk. I would be happy if you could check if that corrects the problem on your...
Fixed a bug with short structure field names (max. length less than 4 characters) that caused a crash in MatFileReader. Thanks to Marcus W for pointing this out.