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

/recurse (Find Source Files in Subdirectories)

Compiles source code files in all child directories of either the specified directory (dir) or of the project directory /recurse:[dir\]file

Arguments

dir (optional)
The directory in which you want the search to begin. If this is not specified, the search begins in the project directory.
file
The file(s) to search for. Wildcard characters are allowed.

Remarks

You can use wildcards in a file name to compile all matching files in the project directory without using /recurse. If no output file name is specified, the compiler will base the output file name on the first input file processed. This will generally be first file in the list of files compiled when viewed alphabetically. For this reason, it is best to specify an output file by using the /out option.

Example

Compiles all VB files in the current directory:

vbc *.vb

Compiles all of the Visual Basic files in the Microsoft\WFC directory and any directories below it and generates Microsoft.WFC.dll:

vbc /target:library /out:Microsoft.WFC.dll /recurse:Microsoft\WFC\*.vb

See Also

Visual Basic Compiler Options