From 9affa4e313e967c811ca38911ce51dbde2002185 Mon Sep 17 00:00:00 2001 From: "David G. Moore, Jr." Date: Sat, 29 Jun 2024 01:14:43 -0400 Subject: [PATCH] Test --- Test/AClass.cs | 23 ---------------------- Test/AStruct.cs | 23 ---------------------- Test/AnEnum.cs | 38 ------------------------------------ Test/AnotherClass.cs | 23 ---------------------- Test/Directory.Build.props | 15 -------------- Test/Directory.Build.targets | 15 -------------- 6 files changed, 137 deletions(-) delete mode 100644 Test/AClass.cs delete mode 100644 Test/AStruct.cs delete mode 100644 Test/AnEnum.cs delete mode 100644 Test/AnotherClass.cs delete mode 100644 Test/Directory.Build.props delete mode 100644 Test/Directory.Build.targets diff --git a/Test/AClass.cs b/Test/AClass.cs deleted file mode 100644 index 1ed2f19..0000000 --- a/Test/AClass.cs +++ /dev/null @@ -1,23 +0,0 @@ -/* - * AClass.cs - * - * Created: 2023-01-09-03:02:38 - * Modified: 2023-01-09-03:02:38 - * - * Author: David G. Moore, Jr. - * - * Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved - * License: MIT (https://opensource.org/licenses/MIT) - */ - -namespace TestingDgmjrSdk; - -/// This is a summary of the class. -public class AClass -{ - /// This is a summary of the property. - /// The property's value. - /// Foo! - /// Bar! - public virtual string? AProperty { get; set; } -} diff --git a/Test/AStruct.cs b/Test/AStruct.cs deleted file mode 100644 index c764a61..0000000 --- a/Test/AStruct.cs +++ /dev/null @@ -1,23 +0,0 @@ -/* - * AStruct.cs - * - * Created: 2023-01-09-03:04:33 - * Modified: 2023-01-09-03:04:33 - * - * Author: David G. Moore, Jr. - * - * Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved - * License: MIT (https://opensource.org/licenses/MIT) - */ - -namespace TestingDgmjrSdk; - -/// This is a summary of the struct. -public struct AStruct -{ - /// This is a summary of the property. - /// The property's value. - /// Foo! - /// Bar! - public string? AProperty { get; set; } -} diff --git a/Test/AnEnum.cs b/Test/AnEnum.cs deleted file mode 100644 index 02ea4fe..0000000 --- a/Test/AnEnum.cs +++ /dev/null @@ -1,38 +0,0 @@ -/* - * AnEnum.cs - * - * Created: 2023-03-28-02:15:28 - * Modified: 2023-03-28-03:18:18 - * - * Author: David G. Moore, Jr. - * - * Copyright © 2022 - 2023 David G. Moore, Jr., All Rights Reserved - * License: MIT (https://opensource.org/licenses/MIT) - */ - -namespace TestingDgmjrSdk; - -using System.ComponentModel.DataAnnotations; - -[GenerateEnumerationRecordStruct("AnEnumeration", "TestingDgmjrSdk")] -public enum AnEnum -{ - /// This is a summary of the enum value. - /// The enum value's value. - /// Foo! - /// Bar! - EnumValue, - - /// This is a summary of the enum value. - /// The enum value's value. - /// Foo! - /// Bar! - EnumValue2, - - /// This is a summary of the enum value. - /// The enum value's value. - /// Foo! - /// Bar! - [Display(Name = "Enumeration Value 3")] - EnumValue3 -} diff --git a/Test/AnotherClass.cs b/Test/AnotherClass.cs deleted file mode 100644 index a5f1418..0000000 --- a/Test/AnotherClass.cs +++ /dev/null @@ -1,23 +0,0 @@ -/* - * AnotherClass.cs - * - * Created: 2023-01-09-03:04:56 - * Modified: 2023-01-09-03:04:56 - * - * Author: David G. Moore, Jr. - * - * Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved - * License: MIT (https://opensource.org/licenses/MIT) - */ - -namespace TestingDgmjrSdk; - -/// This is a summary of the other class. -public class AnotherClass : AClass -{ - /// This is a summary of the property. - /// The property's value. - /// Foo! - /// Bar! - public override string? AProperty { get; set; } -} diff --git a/Test/Directory.Build.props b/Test/Directory.Build.props deleted file mode 100644 index 4e3c20f..0000000 --- a/Test/Directory.Build.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - - diff --git a/Test/Directory.Build.targets b/Test/Directory.Build.targets deleted file mode 100644 index f3a5934..0000000 --- a/Test/Directory.Build.targets +++ /dev/null @@ -1,15 +0,0 @@ - - - - -