Skip to content

Commit b76c827

Browse files
committed
.NET SDK 8.xのインストール方法をREADMEに追記
1 parent b799d01 commit b76c827

2 files changed

Lines changed: 32 additions & 2 deletions

File tree

README.en.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,23 @@ This repository hosts a .NET console application that compares two folders, clas
1414
- The app tries disassembler candidates **per file** in order. Tools that fail repeatedly are temporarily blacklisted and skipped.
1515
- IL cache keys are built from `file MD5 + disassembler identity` (normally tool/version). If version lookup fails, the app falls back to a tool-binary fingerprint so caches from old/new tool builds do not get mixed.
1616

17-
Installation example:
17+
.NET SDK 8.x installation examples:
18+
```powershell
19+
# Windows (winget)
20+
winget install Microsoft.DotNet.SDK.8
21+
```
22+
23+
```powershell
24+
# Windows (dotnet-install script)
25+
powershell -ExecutionPolicy Bypass -c "& { iwr https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1; .\dotnet-install.ps1 -Channel 8.0 }"
26+
```
27+
28+
```bash
29+
# macOS/Linux/Unix (dotnet-install script)
30+
curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0
31+
```
32+
33+
IL disassembler installation examples:
1834

1935
```bash
2036
dotnet tool install --global dotnet-ildasm

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,21 @@
1414
- 逆アセンブラは**ファイルごとに候補順で試行**します。連続失敗したツールは一定時間ブラックリスト化され、以後はスキップされます。
1515
- IL キャッシュキーは「対象ファイルの MD5 + 逆アセンブラ識別子(通常はツール名/バージョン)」で管理します。バージョン取得失敗時はツール実体のフィンガープリントを識別子に使い、旧/新ツールのキャッシュ混在を防ぎます。
1616

17-
インストール例:
17+
.NET SDK 8.x のインストール例:
18+
```powershell
19+
# Windows (winget)
20+
winget install Microsoft.DotNet.SDK.8
21+
```
22+
```powershell
23+
# Windows (dotnet-install スクリプト)
24+
powershell -ExecutionPolicy Bypass -c "& { iwr https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1; .\dotnet-install.ps1 -Channel 8.0 }"
25+
```
26+
```bash
27+
# macOS/Linux/Unix (dotnet-install スクリプト)
28+
curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0
29+
```
30+
31+
IL 逆アセンブラのインストール例:
1832
```bash
1933
dotnet tool install --global dotnet-ildasm
2034
# 必要に応じて PATH に追加

0 commit comments

Comments
 (0)