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

/target:library (Create a Code Library)

Causes the compiler to create a DLL rather than an executable file (EXE). /target:library

-or-

/t:library

Remarks

The DLL will be created with the .dll extension.

Unless otherwise specified with the /out option, the output file name takes the name of the first input file.

When specified at the command line, all files up to the next /out, /target:winexe/target:winexe, or /target:exe option are used to create the .dll.

When building a .dll, a Sub Main procedure is not required.

Example

Compile in.vb, creating in.dll:

vbc /target:library in.vb

See Also

/target (Specify Output File Format) | Visual Basic Compiler Options