https://github.com/joeyguerra/dotnet-stdin-stdout
Dotnet starter app reads from stdin and prints output to stdout.
https://github.com/joeyguerra/dotnet-stdin-stdout
Last synced: 9 months ago
JSON representation
Dotnet starter app reads from stdin and prints output to stdout.
- Host: GitHub
- URL: https://github.com/joeyguerra/dotnet-stdin-stdout
- Owner: joeyguerra
- License: mit
- Created: 2021-09-24T01:20:28.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-26T16:05:22.000Z (about 4 years ago)
- Last Synced: 2025-01-26T06:23:11.639Z (11 months ago)
- Language: C#
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotnet Stdin Stdout Starter App
This app was created with the following.
```bash
mkdir dotnet-stdin-stdout
dotnet new sln -o .
dotnet new classlib -o DotnetStdinStdout
dotnet sln add DotnetStdinStdout/DotnetStdinStdout.csproj
dotnet new xunit -o DotnetStdinStdout.Tests
dotnet sln add ./DotnetStdinStdout.Tests/DotnetStdinStdout.Tests.csproj
```
# Local Dev
Requires `dotnet` cli.
```bash
make test-watch
```
# Run
```bash
cd DotnetStdinStdout
dotnet run
type something
```