Can I compile a whole project under command prompt?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

You know,I can compile a .vb file,such
as "vbc /t:library /out:fibonacci_vb.dll fibonacci.vb".
But can I compile a whole project under command prompt?
 
Sure.

Also, if you have VS.NET, you can pass command line options to it and it'll
load your .sln/.*proj files and perform a build according to your settings.

-mike
MVP
 
Yes you can

Just use group of commands like in your example building your .exe and
..dlls. Put them into command file and that's it.

What stops you?

HTH
Alex
 
Back
Top