Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-055.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 814802b8bb6a07a6e9110fc9ad67c206b8f2af8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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 { }
}