Skip to content

Commit a14c0d6

Browse files
committed
Updated readme.
1 parent 2d7b9fd commit a14c0d6

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

README.ja.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
## これは何?
1717

1818
.NETやそのドキュメントなどに、現在のバージョンを埋め込みたいと考えたことはありませんか?
19-
更に、CIでそのようさ操作を自動化したいが、追加の作業があまりに不透明かつ多くて閉口したことはありませんか?
19+
更に、CIで操作を自動化したいが、追加の作業があまりに不透明かつ多くて閉口したことはありませんか?
2020

21-
C#ではこのような情報を、慣例で`AssemblyInfo.cs`ファイルに記述します:
21+
C#ではバージョンに関する情報を、慣例で`AssemblyInfo.cs`ファイルに記述します:
2222

2323
```csharp
2424
using System.Reflection;
@@ -153,9 +153,13 @@ namespace YourApp
153153
## コマンドラインインターフェイス (CLI)
154154

155155
RelaxVersionerは、dotnet CLI toolに対応しています。
156-
`rv`コマンドは、 `dotnet tool install -g rv-cli` でインストールすることが出来ます。
156+
`rv`コマンドは、以下のコマンドでインストールすることが出来ます:
157157

158-
以下のようにCLIコマンドを使用することで、簡単にバージョン文字列を取得出来ます:
158+
```bash
159+
$ dotnet tool install -g rv-cli
160+
```
161+
162+
以下のように`rv`コマンドを使用することで、簡単にバージョン文字列を取得出来ます:
159163

160164
```bash
161165
$ rv .

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,13 @@ namespace YourApp
150150
## Command line interface (CLI)
151151

152152
RelaxVersioner supports the dotnet CLI tool.
153-
The `rv` command can be installed with `dotnet tool install -g rv-cli`.
153+
The `rv` command can be installed with:
154154

155-
You can easily obtain the version string by using the CLI command as follows:
155+
```bash
156+
$ dotnet tool install -g rv-cli
157+
```
158+
159+
You can easily obtain the version string by using the `rv` command as follows:
156160

157161
```bash
158162
$ rv .

0 commit comments

Comments
 (0)