makefile

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anonymous

    #1

    makefile

    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?


  • Armin Zingler

    #2
    Re: makefile

    "Anonymous" <anonymous@noem ail.com> schrieb[color=blue]
    > 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?[/color]

    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

    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: makefile

      Armin,

      "Armin Zingler" <az.nospam@free net.de> schrieb:[color=blue]
      > devenv.exe /build debug "my.sln"
      >
      > See help index for more info on command line arguments.[/color]

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

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://classicvb.org/petition/>

      Comment

      Working...