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!

Type Library Exporter (TlbExp.exe)

TlbExp is a command line tool that uses the API described in the following section to export a type library generated from a NGWS runtime assembly. The TlbExp utility generates a type library containing definitions of the public types defined in the NGWS runtime assembly named in AssemblyName.

Syntax

TlbExp AssemblyName [/out: TlbFile]
Option Description
/out: file Specifies the name of the type library file to be generated. If the option is omitted, the type library is generated with the same name as the assembly (the actual assembly name, not the name of the file containing the assembly), with the .tlb extension.
/silent Prevents TlbExp from displaying a success message.
/verbose Displays extra information.
/? or /help Displays help for the tool.

Examples

The following example generates a type library with the name same name as the assembly found in mytest.dll.

TlbExp mytest.dll

This example generates the type library with the name clipper.tlb.

TlbExp mytest.dll /out clipper.tlb