I can manually do this (without a single problem) to compile my VB.NET code into my stand-alone WindowsForms executable. But is there a way to do this all from a command-line script? I've checked into Vbc, MsBuild, and DevEnv but they all seem to be unable to do 1 (or more) of my needed steps.
- Double-click on my foo.vbproj and launch VS2005.
- Change a few of my #Const vars from true to false.
- Hit F5 to compile it.
- Change my #Const back to their original settings.
- Exit VS2005.
- Enjoy my newly created bin\debug\foo.exe
Any idea on how to do this from a command-line script instead? Thanks.