Project.

Project(string, Level, int, XmlNode) Constructor

Summary

Initializes a new NAnt.Core.Project class with the given source, message threshold and indentation level, and using the specified System.Xml.XmlNode to load internal configuration settings.
Assembly
NAnt.Core.dll
Namespace
NAnt.Core
Containing Type
Project

Syntax

public Project(string uriOrFilePath, Level threshold, int indentLevel, XmlNode configurationNode)

Remarks

If the source is a uri of form 'file:///path' then use the path part.

Parameters

Name Type Description
uriOrFilePath string

The full path to the build file.

This can be of any form that XmlDocument.Load(string) accepts.

threshold Level The message threshold.
indentLevel int The project indentation level.
configurationNode XmlNode The System.Xml.XmlNode NAnt should use to initialize configuration settings.

Return Value

Type Description
void