Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mayuki committed Sep 15, 2021
1 parent b039bee commit 81744a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<NoWarn>$(NoWarn);1591;1587;1574</NoWarn>

<!-- NuGet Package Information -->
<Description>Write scripts with the power of .NET. Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience in .NET application.</Description>
<Description>Write scripts with the power of .NET. Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience to .NET application.</Description>
<Authors>Mayuki Sawatari</Authors>
<Copyright>Copyright © Mayuki Sawatari</Copyright>
<PackageProjectUrl>https://github.com/mayuki/Chell</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Chell
Write scripts with the power of C# and .NET

Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience in .NET application.
Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience to .NET application.

```csharp
var branch = await Run($"git branch --show-current");
Expand Down Expand Up @@ -258,7 +258,7 @@ Env.ProcessTimeout = TimeSpan.FromSecond(1);

// OperationCanceledException will be thrown after 1s.
await Run($"ping -t localhost");
``
```

#### `Arguments`
Gets the arguments passed to the current application.
Expand Down
2 changes: 1 addition & 1 deletion src/Chell.Run/Chell.Run.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>

<Description>Tool to run C# code like a script. Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience in .NET application.</Description>
<Description>Tool to run C# code like a script. Chell is a library and execution tool for providing a shell script-like (bash, cmd, ...) experience to .NET application.</Description>
<PackAsTool>true</PackAsTool>
<ToolCommandName>chell</ToolCommandName>
<!--
Expand Down

0 comments on commit 81744a7

Please sign in to comment.