[Mono-list] Why doesn't the Mono distribution contain al.exe?
Miguel de Icaza
miguel@ximian.com
05 Jul 2003 18:52:00 -0400
Hello,
> I've checked out and compiled mono/mcs from CVS
> and everything works fine...
>
> I've just a question: where can I find the al.exe
> program? Actually it is not included neither in
> mono nor in mcs. I need it to link a .resource file
> into a satellite assembly.
We do not ship al.exe yet.
You can link the resource by compiling it directly into your source
code:
mcs program.cs -resource:file.resource
Miguel.