Skip to content
/ isop Public
forked from wallymathieu/isop

Isop is the swedish name for hyssop. Like any spice it is intended to give flavor to the development of command line apps in .net.

License

Notifications You must be signed in to change notification settings

2hdddg/isop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Isop

This project is intended to collect some of the helpers for console applications. The hope is that this will simplify the design of such programs.

Goal

The goal is to be able to write code like:

someprogram.exe My Action --argument value

And hooking it up by writing something like:
static void Main(string[] args)
{
  Console.WriteLine(ArgumentParser.Build()
                .Recognize(typeof(MyController))
                .Parse(args)
                .Invoke());
}

So that the class with the name My or MyController and the method with the name Action gets invoked.

Example

Look at the Example project for the most recent example of how it is used.

About

Isop is the swedish name for hyssop. Like any spice it is intended to give flavor to the development of command line apps in .net.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published