From 8a9f13ad820a27294eceddcccbe85c0bb01fa117 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Wed, 26 Feb 2025 10:03:02 -0500 Subject: [PATCH] Introduce Tool Manifest --- .config/dotnet-tools.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .config/dotnet-tools.json diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 00000000000..2ea3e269625 --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,11 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "azuresigntool": { + "version": "4.0.1", + "commands": ["azuresigntool"], + "rollForward": false + } + } +}