Reputation: 24623
I am working on Debian Stable Linux (version 11.5)
, and I have installed mono version 6.8.0.105
to compile C# files
.
I have installed Accord
package from Nuget website.
It has following versions of dll files in its lib folder:
./net35/Accord.dll
./net35-unity full v3.5/Accord.dll
./net35-unity micro v3.5/Accord.dll
./net35-unity subset v3.5/Accord.dll
./net35-unity web v3.5/Accord.dll
./net40/Accord.dll
./net45/Accord.dll
./net46/Accord.dll
./net462/Accord.dll
./netstandard1.4/Accord.dll
./netstandard2.0/Accord.dll
Which one of these should I use for my system of Mono on Linux?
Upvotes: 0
Views: 125
Reputation: 2994
The netstandard2.0 version, because it is cross platform and you can use in many kind of applications too (android, windows, linux). But I would use some build system, which selects the appropriate dll version by your projects target.
Upvotes: 1