multiple .vb files into one .dll using vbc.exe

M

Matt

If I don't have access to Visual Studio .Net, but I need to compile all my
..vb files into one .dll, how would I do this?

I know how to do this for one .vb file using vbc.exe, but what about more
than one .vb file?

Thanks.

Matt
 
J

Juan T. Llibre

Use a wildcard in the command line :


vbc /target:library /out:your.dll *.vb

best regards,
 
J

Juan T. Llibre

That works, but is quite tiresome
if the project has more than a few files.

I dump all my project's files in a directory and use a wildcard:

vbc /t:library /out:my.dll *.vb
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top