Specifies the name of the output file.
/out:filename
The compiler expects to find one or more source code files following the /out option.
Specify the full name and extension of the file to create. If you do not, the .exe file takes its name from the source code file containing the Sub Main procedure, and the .dll file takes its name from the first source code file.
To set /out in the Visual Studio integrated development environment
To set /out programmatically
The following code compiles t2.vb
and creates output file t2.exe
:
vbc t2.vb /out:t3.exe