i can manually (without single problem) compile vb.net code stand-alone windowsforms executable. there way command-line script? i've checked vbc, msbuild, , devenv seem unable 1 (or more) of needed steps.
- double-click on foo.vbproj , launch vs2005.
- change few of #const vars true false.
- hit f5 compile it.
- change #const original settings.
- exit vs2005.
- enjoy newly created bin\debug\foo.exe
any idea on how command-line script instead? thanks.
you define #consts @ project level, , have multiple project files: each identical having different constants - foo1.vbproj, foo2.vbproj etc. these constants can defined in project properties. use msbuild build each project.
Comments
Post a Comment