From 517fbcaa94786377893e357bcb5f6384598cf751 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Mon, 23 Nov 2020 12:09:56 -0800 Subject: [PATCH 1/2] Update ILVerify readme ILVerify is published on nuget now. It is not required to use the nightly feed anymore. --- src/coreclr/src/tools/ILVerify/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/tools/ILVerify/README.md b/src/coreclr/src/tools/ILVerify/README.md index 7f61e432569bb..a5678f47fc875 100644 --- a/src/coreclr/src/tools/ILVerify/README.md +++ b/src/coreclr/src/tools/ILVerify/README.md @@ -8,11 +8,11 @@ The main users of this tool are people working on software that emits MSIL code. ## How to use ILVerify -ILVerify is published as a global tool in the .NET runtime nightly feed. Install it by running: +ILVerify is published as a global tool. Install it by running: ``` dotnet new tool-manifest -dotnet tool install dotnet-ilverify --version 5.0.0-preview* --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json +dotnet tool install dotnet-ilverify ``` Example of use: From 7bf04ecdbe53be1fb0e01082cf3786d99b11c180 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Mon, 23 Nov 2020 12:37:42 -0800 Subject: [PATCH 2/2] Feedback --- src/coreclr/src/tools/ILVerify/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/coreclr/src/tools/ILVerify/README.md b/src/coreclr/src/tools/ILVerify/README.md index a5678f47fc875..ea3d629756d42 100644 --- a/src/coreclr/src/tools/ILVerify/README.md +++ b/src/coreclr/src/tools/ILVerify/README.md @@ -8,11 +8,10 @@ The main users of this tool are people working on software that emits MSIL code. ## How to use ILVerify -ILVerify is published as a global tool. Install it by running: +ILVerify is published as a global tool [package](https://www.nuget.org/packages/dotnet-ilverify/). Install it by running: ``` -dotnet new tool-manifest -dotnet tool install dotnet-ilverify +dotnet tool install --global dotnet-ilverify ``` Example of use: