I use Antlr tools as follows (on Mono)
dmcs /r:Antlr3.Runtime.dll /r:StringTemplate.dll * .cs /out:Main.exe
I refer to two dll libraries, but there is another DLL file (antlr.runtime.dll) that is referenced behind the scene. I got this when I have an error by simply copying two dll libraries and compiling.
Are there any .NET tools to detect dll references? For example, if I run "DETECT Antlr3.Runtime.dll", I get the file "antlr.runtime.dll".
source
share