diff --git a/Directory.Build.props b/Directory.Build.props index b10e852..d85bba9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -8,7 +8,7 @@ $(NoWarn);1591;1587;1574 - 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. + 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. Mayuki Sawatari Copyright © Mayuki Sawatari https://github.com/mayuki/Chell diff --git a/README.md b/README.md index 97649cd..665d5c7 100644 --- a/README.md +++ b/README.md @@ -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"); @@ -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. diff --git a/src/Chell.Run/Chell.Run.csproj b/src/Chell.Run/Chell.Run.csproj index 38b6a5a..9230a71 100644 --- a/src/Chell.Run/Chell.Run.csproj +++ b/src/Chell.Run/Chell.Run.csproj @@ -4,7 +4,7 @@ Exe netcoreapp3.1;net5.0 - 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. + 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. true chell