Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

30 lines
577 B
C#

// Compiler options: -doc:xml-055.xml -warnaserror
namespace NAnt.Core.Filters
{
/// <summary>
/// Represent a chain of NAnt filters that can be applied to a 'Task'.
/// </summary>
/// <remarks>
/// <list type="bullet">
/// <item>
/// <description><see cref="NAnt.Core.Tasks.CopyTask"/></description>
/// </item>
/// </list>
/// </remarks>
public class FilterChain
{
static void Main ()
{
}
}
}
namespace NAnt.Core.Tasks
{
/// <summary>
/// Copies a file or set of files to a new file or directory.
/// </summary>
public class CopyTask { }
}