diff --git a/README.ja.md b/README.ja.md index b57cd8e..a780582 100644 --- a/README.ja.md +++ b/README.ja.md @@ -16,9 +16,9 @@ ## これは何? .NETやそのドキュメントなどに、現在のバージョンを埋め込みたいと考えたことはありませんか? -更に、CIでそのようさ操作を自動化したいが、追加の作業があまりに不透明かつ多くて閉口したことはありませんか? +更に、CIで操作を自動化したいが、追加の作業があまりに不透明かつ多くて閉口したことはありませんか? -C#ではこのような情報を、慣例で`AssemblyInfo.cs`ファイルに記述します: +C#ではバージョンに関する情報を、慣例で`AssemblyInfo.cs`ファイルに記述します: ```csharp using System.Reflection; @@ -153,9 +153,13 @@ namespace YourApp ## コマンドラインインターフェイス (CLI) RelaxVersionerは、dotnet CLI toolに対応しています。 -`rv`コマンドは、 `dotnet tool install -g rv-cli` でインストールすることが出来ます。 +`rv`コマンドは、以下のコマンドでインストールすることが出来ます: -以下のようにCLIコマンドを使用することで、簡単にバージョン文字列を取得出来ます: +```bash +$ dotnet tool install -g rv-cli +``` + +以下のように`rv`コマンドを使用することで、簡単にバージョン文字列を取得出来ます: ```bash $ rv . diff --git a/README.md b/README.md index 6f5231f..dc7542b 100644 --- a/README.md +++ b/README.md @@ -150,9 +150,13 @@ namespace YourApp ## Command line interface (CLI) RelaxVersioner supports the dotnet CLI tool. -The `rv` command can be installed with `dotnet tool install -g rv-cli`. +The `rv` command can be installed with: -You can easily obtain the version string by using the CLI command as follows: +```bash +$ dotnet tool install -g rv-cli +``` + +You can easily obtain the version string by using the `rv` command as follows: ```bash $ rv .