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

/nostdlib (Do Not Import Standard Library)

Prevents the import of Mscorlib.dll and Microsoft.VisualBasic.dll. /nostdlib[+ | -]

Remarks

Mscorlib.dll defines the entire System namespace. Use this option if you want to define or create your own System namespace and objects.

If you specify /nostdlib or /nostdlib+, the standard libraries mscorlib.dll and Microsoft.VisualBasic.dll will not be imported into your program and you must manually add references to MSCorLib.dll and Microsoft.VisualBasic.dll using the /reference option. The default for this option is /nostdlib -.

Example

Compile t2.vb but do not load standard libraries:

vbc t2.vb /nostdlib

See Also

Visual Basic Compiler Options