[msvc] Update csproj files (#4221)
[mono.git] / mcs / nunit24 / NUnitCore / core / TestCaseBuilderAttribute.cs
1 // ****************************************************************\r
2 // This is free software licensed under the NUnit license. You\r
3 // may obtain a copy of the license as well as information regarding\r
4 // copyright ownership at http://nunit.org/?p=license&r=2.4.\r
5 // ****************************************************************\r
6 \r
7 using System;\r
8 \r
9 namespace NUnit.Core\r
10 {\r
11         /// <summary>\r
12         /// TestBuilderAttribute is used to mark custom test case builders.\r
13         /// The class so marked must implement the ITestCaseBuilder interface.\r
14         /// </summary>\r
15         [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)]\r
16         public sealed class TestCaseBuilderAttribute : System.Attribute\r
17         {}\r
18 }\r