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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-10-20 19:21:22 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-20 19:23:40 +0400
commitd9c8bdff9acc38b564beae4582534570e06e4e68 (patch)
tree5e8328c86d2c036189af4441f064fd849be99b31 /mcs/tests/test-xml-055.cs
parentb122bf1db7bc12a6633527e03ad017828e334ada (diff)
Clean up test files
Diffstat (limited to 'mcs/tests/test-xml-055.cs')
-rw-r--r--mcs/tests/test-xml-055.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/mcs/tests/test-xml-055.cs b/mcs/tests/test-xml-055.cs
new file mode 100644
index 00000000000..814802b8bb6
--- /dev/null
+++ b/mcs/tests/test-xml-055.cs
@@ -0,0 +1,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 { }
+}