2

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.

1 Answers1

3

I found a way to do it with mono: $ mcs -r:FortnoxAPILibrary.dll Program.cs;./Program.exe