https://github.com/kzu/echoextension
A sample Terminal.Shell extension
https://github.com/kzu/echoextension
tsh
Last synced: 2 months ago
JSON representation
A sample Terminal.Shell extension
- Host: GitHub
- URL: https://github.com/kzu/echoextension
- Owner: kzu
- License: mit
- Created: 2022-11-19T03:58:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-19T15:02:16.000Z (over 3 years ago)
- Last Synced: 2025-11-21T16:03:18.592Z (8 months ago)
- Topics: tsh
- Language: C#
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
# Terminal.Shell EchoExtension
A sample extension with just one command.
Simply copy this to your own project and use `IMessageBus` to execute it:
```csharp
using Merq;
namespace EchoExtension;
public partial record Echo(string Message) : ICommand;
```