NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

/debug (Emit Debugging Information)

Causes the compiler to generate debugging information and place it in the output file(s). /debug[+ | -]

Remarks

Use this option to create debug builds. If /debug (or /debug+) is not specified, you will not be able to debug the output file of your program.

By default, debugging information is not emitted (/debug-). To emit debugging information, specify /debug or /debug+.

Example

Place debugging information in output file app.exe:

vbc /debug /out:app.exe test.vb

See Also

Visual Basic Compiler Options | /bugreport