https://github.com/aimenux/stringclidemo
Playing with net core global tools
https://github.com/aimenux/stringclidemo
cli global-tool netcore31 vs19
Last synced: about 1 month ago
JSON representation
Playing with net core global tools
- Host: GitHub
- URL: https://github.com/aimenux/stringclidemo
- Owner: aimenux
- Created: 2020-11-20T10:45:22.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-20T15:01:35.000Z (over 5 years ago)
- Last Synced: 2025-02-27T01:54:31.445Z (over 1 year ago)
- Topics: cli, global-tool, netcore31, vs19
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# StringCliDemo
```
Playing with net core global tools
```
> In this demo, i m building a dummy global cli tool that allows to manipulate string texts
>
> The tool is based on one main command and three sub commmands :
> - Use sub command `PalindromeStringCli` to check if text is palindrome
> - Use sub command `ReverseStringCli` to reverse text
> - Use sub command `SortStringCli` to sort text
>
> In order to run the demo, type the following commands in your favorite terminal :
> - `.\App.exe PalindromeStringCli "TEXT"`
> - `.\App.exe ReverseStringCli "TEXT"`
> - `.\App.exe SortStringCli "TEXT"`
>
> To install, run, uninstall global tool from a local source path, type commands :
> - `dotnet tool install -g --add-source ./app/cli-tools string-cli`
> - `string-cli -h`
> - `dotnet tool uninstall string-cli -g`
**`Tools`** : vs19, net core 3.1