makefile

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Is it possible to generate some kind of makefile from vb? (with VS2003's
native tools)

Or is the only option to use .sln-files?
 
Anonymous said:
Is it possible to generate some kind of makefile from vb? (with
VS2003's native tools)

Or is the only option to use .sln-files?

I don't know of makefiles for vb projects, but if you only want to avoid
manually starting the IDE and building the solution, and if you don't mind
using VS to build the project, you can build the solution from the command
line:

devenv.exe /build debug "my.sln"

See help index for more info on command line arguments.

Armin
 
Armin,

Armin Zingler said:
devenv.exe /build debug "my.sln"

See help index for more info on command line arguments.

.... or start "devenv.exe /?" :-).
 

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