feat: initial project commit
All checks were successful
default / default (8.0) (push) Successful in 39s
All checks were successful
default / default (8.0) (push) Successful in 39s
This commit is contained in:
commit
833bc2bd9c
52 changed files with 3783 additions and 0 deletions
16
src/Process.Tests.Dummy/Commands/WorkingDirectoryCommand.cs
Normal file
16
src/Process.Tests.Dummy/Commands/WorkingDirectoryCommand.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using Spectre.Console.Cli;
|
||||
|
||||
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;
|
||||
|
||||
internal sealed class WorkingDirectoryCommand : Command<WorkingDirectoryCommand.Settings>
|
||||
{
|
||||
public sealed class Settings : CommandSettings
|
||||
{
|
||||
}
|
||||
|
||||
public override int Execute(CommandContext context, Settings settings)
|
||||
{
|
||||
Console.Out.WriteLine(Directory.GetCurrentDirectory());
|
||||
return 0;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue