This commit is contained in:
Alexey Golub
2020-01-27 21:10:14 +02:00
committed by GitHub
parent 63441688fe
commit 3883c831e9
122 changed files with 3472 additions and 4180 deletions

View File

@@ -0,0 +1,15 @@
using System.Threading.Tasks;
using CliFx.Attributes;
using CliFx.Tests.TestCustomTypes;
namespace CliFx.Tests.TestCommands
{
[Command]
public class BrokenEnumerableCommand : ICommand
{
[CommandParameter(0)]
public TestCustomEnumerable<string>? Test { get; set; }
public ValueTask ExecuteAsync(IConsole console) => default;
}
}