I'm coding a UWP app using C# and I need to display some 3D models on a map. This map component only accepts 3MF 3D models, but the models that I have are in FBX format, so I need to find a way of performing this conversion programmatically (in code), since many more models will come in the future and manual conversion is not an option.
I have been told that UWP itself does not include a tool that carries out this kind of conversion. Are there any libraries out there that could do the trick? I need something that, given a FBX file, produces an equivalent 3MF file.
P.S: I have done some research and found a library called assimp, which appears to support FBX to 3MF conversions, but I have not been able to get it working (I had problems related to CMake and MinGW, so I couldn't even try it).