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

  • Thread starter Thread starter Matt
  • Start date Start date
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
 
Use a wildcard in the command line :


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

best regards,


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
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



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 

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

Back
Top