diff --git a/test/Program.cs b/test/Program.cs deleted file mode 100644 index 58c3b9f..0000000 --- a/test/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -using PluginManager.WindowManagement; - -InputBox inputBox = new InputBox(); -inputBox.Title = "Test"; -inputBox.Message = "This is a test"; -inputBox.AddOption("Enter a number", (input) => int.TryParse(input, out int result)); -inputBox.AddOption("Enter a string", (input) => !string.IsNullOrEmpty(input)); -inputBox.AddOption("Enter a number", (input) => int.TryParse(input, out int result)); - -var result = inputBox.Show(); - -foreach (var item in result) -{ - Console.WriteLine(item); -} - diff --git a/test/test.csproj b/test/test.csproj deleted file mode 100644 index 61c8c2d..0000000 --- a/test/test.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - Exe - net6.0 - enable - enable - - -