I am trying to link the file name.ext
to assembly.dll
using the AL (Assembly Linker) to mimic what can be done in C++ using the /ASSEMBLYLINKRESOURCE option.
The syntax I am using is the following:
al.exe assembly.dll /link:name.ext
and I get the following error:
ALINK: error AL1017: No target filename was specified
I also tried:
al.exe assembly.dll /out:outAssembly.dll /link:name.ext
getting the following error:
ALINK: warning AL1020: Ignoring included assembly 'assembly.dll'
ALINK: error AL1019: Metadata failure while creating assembly -- The system cannot find the file specified.
What I am doing wrong? What is the correct syntax to obtain the resource link?
Thanks.