Updated Extension Manager for this. The extension version is 1.2.1.21, but the download says it is 1.2.1.22. EM uses the version set in the dll so I went with 1.2.1.21. Also do you still need the 2 raylib dlls.
To make it compatible with sVB every reference to namespace SmallBasic needs to be changed to SmallVisualBasic. The way I do this is with a #define SVB at the top of every code file which I globally uncomment for an sVB build. Also need to reference SmallVisualBasicLibrary.dll. Note that the SVB needs to be used as a compiler directive for every occurance of SmallBasic namespace, eg. [SmallVisualBasicType] and usings and places where the sVB code in SmallVisualBasicLibrary differes from SmallBasicLibrary. The developer of sVB copied the original code, but has modified it and added arguments in some places so if you use reflection into sVB be careful. Here is an example file: https://github.com/litdev1/LitDev/blob/m.../3DView.cs
To make it compatible with sVB every reference to namespace SmallBasic needs to be changed to SmallVisualBasic. The way I do this is with a #define SVB at the top of every code file which I globally uncomment for an sVB build. Also need to reference SmallVisualBasicLibrary.dll. Note that the SVB needs to be used as a compiler directive for every occurance of SmallBasic namespace, eg. [SmallVisualBasicType] and usings and places where the sVB code in SmallVisualBasicLibrary differes from SmallBasicLibrary. The developer of sVB copied the original code, but has modified it and added arguments in some places so if you use reflection into sVB be careful. Here is an example file: https://github.com/litdev1/LitDev/blob/m.../3DView.cs