We've started to look at the newly announced OpenSilver (open source SilverLight) which runs in WebAssembly as a possible solution for our cross platform needs.
OpenSilver is built using .Net Standard 2.0. We have existing code which is built using the .NetCore libraries.
From what I've read, it looks like .NetCore sits on top of/uses .Net Standard (BCL Libraries). https://learn.microsoft.com/en-us/archive/msdn-magazine/2017/september/net-standard-demystifying-net-core-and-net-standard
How do I go include/use my existing .NetCore libraries into the new Visual Studio app/project? Is this even possible (Without splitting into a client/server approach)?
Thanks