Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knutkirkhorn/todo-app
Simple console-based to-do app
https://github.com/knutkirkhorn/todo-app
cli command-line csharp todo todoapp
Last synced: 2 months ago
JSON representation
Simple console-based to-do app
- Host: GitHub
- URL: https://github.com/knutkirkhorn/todo-app
- Owner: knutkirkhorn
- Created: 2018-10-18T07:04:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T21:25:21.000Z (over 2 years ago)
- Last Synced: 2024-04-23T23:05:15.750Z (10 months ago)
- Topics: cli, command-line, csharp, todo, todoapp
- Language: C#
- Size: 18.6 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo-app
> Simple console-based to-do app created in C#All todo tasks are stored locally in a file between runs.
## Usage
```
Usage
Options
Add [item] Add a item to the todo application
Do #[number] Complete a given item
Print Print all todo items
Help Show all possible options
Exit Exit the command line applicationExamples
>Add Apply to DIPS
#1 Apply to DIPS
>Add Complete assignment
#2 Complete assignment
#1 Apply to DIPS
#2 Complete assignment
>Do #1
Completed #1 Apply to DIPS
>Do #2
Completed #2 Complete assignment
```## Options
### `Add`
Add a item to the todo application.### `Do`
Complete a given item. Specified by a number.### `Print`
Print all todo items that are saved.### `Help`
Show all possible options.### `Exit`
Exit the command line application. All items are stored in a file till next time.## Tests
Tests can be run using the tools inside Visual Studio for running and are made using MSTest.