I have built a C# .NET Core application in visual studio using some nuGet packages:
https://github.com/akkadotnet/akka.net
https://github.com/shimat/opencvsharp
Now I would like to make it work in a Raspberry Pi 3 with Raspbian. How can I do that? Is it necessary to download source code from those projects and recompile it on the target? Is there a way to cross compile it on my pc? I have little experience in cross compilation.
In this case would it be better to use Windows IoT on the Raspberry?
On the Raspberry I have already installed the .NETCore environment so I can run a C# application without external libraries.