M
Mike Nau
I've been trying to get a concrete answer to this for the last few
days, but have come up short. I'm hoping someone here can help.
Is there a way to take a set of c# modules (c# code compiled using csc
with the /t:module option) and combine them into a single assembly
using the assembly linker or any other tool.
For example I have the following compiled c# modules:
foo1.netmodule
foo2.netmodule
I'd like to link them into a single .net assembly named foolinked.dll.
I have tried
al foo1.netmodule foo2.netmodule /target:library /out:foolinked.dll
This created foolinked.dll but when I explore it with ildasm, it only
contains the assembly manifest and points to foo1.netmodule and
foo2.netmodule.
Any help would be greatly appreciated.
Thanks,
Mike.
days, but have come up short. I'm hoping someone here can help.
Is there a way to take a set of c# modules (c# code compiled using csc
with the /t:module option) and combine them into a single assembly
using the assembly linker or any other tool.
For example I have the following compiled c# modules:
foo1.netmodule
foo2.netmodule
I'd like to link them into a single .net assembly named foolinked.dll.
I have tried
al foo1.netmodule foo2.netmodule /target:library /out:foolinked.dll
This created foolinked.dll but when I explore it with ildasm, it only
contains the assembly manifest and points to foo1.netmodule and
foo2.netmodule.
Any help would be greatly appreciated.
Thanks,
Mike.