capturing vbc parameters

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

    #1

    capturing vbc parameters

    I have an application built from a number of solutions and would like to
    create a batch file to compile them all using vbc

    how can i capture the parameters that the vs.net ide uses when it invokes
    the compiler? or is there a better approach

    cheers

    guy
  • Mattias Sjögren

    #2
    Re: capturing vbc parameters

    [color=blue]
    >how can i capture the parameters that the vs.net ide uses when it invokes
    >the compiler?[/color]

    Current versions of VS.NET don't run Vbc.exe, so you can't do that.

    [color=blue]
    >or is there a better approach[/color]

    You could instead make the batch file run

    Devenv your.sln /build


    Mattias

    --
    Mattias Sjögren [MVP] mattias @ mvps.org
    http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
    Please reply only to the newsgroup.

    Comment

    • Mattias Sjögren

      #3
      Re: capturing vbc parameters

      [color=blue]
      >how can i capture the parameters that the vs.net ide uses when it invokes
      >the compiler?[/color]

      Current versions of VS.NET don't run Vbc.exe, so you can't do that.

      [color=blue]
      >or is there a better approach[/color]

      You could instead make the batch file run

      Devenv your.sln /build


      Mattias

      --
      Mattias Sjögren [MVP] mattias @ mvps.org
      http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
      Please reply only to the newsgroup.

      Comment

      Working...