I want to compile and execute a C# program that needs external dll. In Visual Studio we just add...reference. What is the corresponding way to do that with Ubuntu 16.04? I use the SDK from Microsoft.
Asked
Active
Viewed 1,510 times
2
1 Answers
3
I found a way to do it with mono: $ mcs -r:FortnoxAPILibrary.dll Program.cs;./Program.exe

Niklas Rosencrantz
- 3,337
$ mcs -r:FortnoxAPILibrary.dll Program.cs;./Program.exe
– Niklas Rosencrantz Jul 13 '17 at 11:39