I'm currently porting a C# plugin from Windows to Linux. On Windows the plugin is loaded using a DllExport nuget package, on Linux I'm looking to use Mono embedding.
The program that will use my plugin only has 32bit builds, so I would need to embed the 32bit version of Mono regardless of the OS.
On 64bit Linux, the default install of Mono only provides x64 libs and does not appear to be multi-arch compatible.
Is there an intended way to embed 32bit Mono on a 64bit system?