この記事の対象: ✔️ .NET 6 SDK 以降のバージョン
名前
dotnet tool search - NuGet に発行されているすべての .NET ツール を検索します。
概要
dotnet tool search [--detail] [--prerelease]
[--skip <NUMBER>] [--take <NUMBER>] <SEARCH TERM>
dotnet tool search -h|--help
Description
dotnet tool search コマンドを使用すると、.NET グローバル、ツール パス、またはローカル ツールとして使用できるツールを NuGet で検索できます。 このコマンドは、タイトル、説明、タグなどのツール名とメタデータを検索します。
このコマンドでは 、NuGet Search API を使用します。
packageType=dotnettoolをフィルター処理して、.NET ツール パッケージのみを選択します。
オプション
--detailクエリの詳細な結果を表示します。
--prereleaseプレリリース パッケージが含まれています。
--skip <NUMBER>スキップするクエリ結果の数を指定します。 改ページ位置の変更に使用されます。
--take <NUMBER>表示するクエリ結果の数を指定します。 改ページ位置の変更に使用されます。
-
-?|-h|--helpコマンドの使用方法を示した説明を出力します。
例示
パッケージ名または説明に "format" が含まれる .NET ツールの NuGet.org を検索します。
dotnet tool search format出力は次の例のようになります。
Package ID Latest Version Authors Downloads Verified --------------------------------------------------------------------------------------------------------------------------------------------------------------- dotnet-format 4.1.131201 Microsoft 496746 bsoa.generator 1.0.0 Microsoft 533パッケージ名またはメタデータに "format" が含まれる .NET ツールの NuGet.org を検索し、最初の結果のみを表示し、詳細ビューを表示します。
dotnet tool search format --take 1 --detail出力は次の例のようになります。
---------------- dotnet-format Latest Version: 4.1.131201 Authors: Microsoft Tags: Downloads: 496746 Verified: False Description: Command line tool for formatting C# and Visual Basic code files based on .editorconfig settings. Versions: 3.0.2 Downloads: 1973 3.0.4 Downloads: 9064 3.1.37601 Downloads: 114730 3.2.107702 Downloads: 13423 3.3.111304 Downloads: 131195 4.0.130203 Downloads: 78610 4.1.131201 Downloads: 145927
こちらも参照ください
.NET