Skip to content

Commit

Permalink
Updated readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Sep 18, 2024
1 parent 2d7b9fd commit a14c0d6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
12 changes: 8 additions & 4 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
## これは何?

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

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

```csharp
using System.Reflection;
Expand Down Expand Up @@ -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 .
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit a14c0d6

Please sign in to comment.