NAnt SDK Documentation - v0.92

ProjectBase.GetOutputFiles Method 

Gets the complete set of output files for the project configuration matching the specified solution configuration.

[Visual Basic]
Overridable Public Sub GetOutputFiles( _
   ByVal solutionConfiguration As Configuration, _
   ByVal outputFiles As Hashtable _
)
[C#]
public virtual void GetOutputFiles(
   Configuration solutionConfiguration,
   Hashtable outputFiles
);

Parameters

solutionConfiguration
The solution configuration that is built.
outputFiles
The set of output files to be updated.

Remarks

The key of the case-insensitive Hashtable is the full path of the output file and the value is the path relative to the output directory.

If the project is not configured to be built for the specified solution configuration, then no output files are added.

See Also

ProjectBase Class | NAnt.VSNet Namespace