Delete test directory
This commit is contained in:
@@ -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);
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\PluginManager\PluginManager.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
Reference in New Issue
Block a user