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:module (Create Module to Add to Assembly)

Causes the compiler to generate a module that can be added to an assembly. /target:module

-or-

/t:module

Remarks

The output file will have an extension of .dll.

A file that does not have an assembly cannot be loaded by the NGWS runtime runtime. However, such a file can be incorporated into the assembly manifest of an assembly via /reference.

If more than one module is created in a single compilation, internal types in one module will be available to other modules in the compilation. When code in one module references internal types in another module, then both modules must be incorporated into an assembly manifest, via /reference.

Example

Compile in.vb, creating in.dll:

vbc /target:module in.vb

See Also

/target | Visual Basic Compiler Options