A simple CLI tool to create, list, mark done and delete tasks in json file. Written in C#.
ToDo-sharp listLists all the currently saved Tasks along with their ID number and completion status
$ ToDo-sharp list
Id IsDone Description
1 True task1
2 False task2
ToDo-sharp addCreates a new task, Prompts user for Description. Automatically assignes it an ID and marks completion status asfalseby default.
$ ToDo-sharp add
Enter the description of the task : task3
Task added successfully.
ToDo-sharp donePrompts for Task ID, Marks that Task as completed.
$ ToDo-sharp done
Enter the Id of the completed task : 3
Item has been marked Done.
ToDo-sharp deletePrompts for Task ID, Deletes the task from the ToDo-sharp list.
$ ToDo-sharp delete
Enter the Id of the task to be deleted : 3
ToDo-sharpShows a short usage guide.
ToDo-sharp
ToDo app
Usage: list , add , done , delete