From abf6e36a9da80fd108b00415dc7674b9847ff379 Mon Sep 17 00:00:00 2001 From: Will Speak Date: Mon, 5 Aug 2024 12:04:52 +0100 Subject: [PATCH] feat: Respect $(DOTNET_HOST_PATH) If Set The variable `DOTNET_HOST_PATH` is used by `dotnet` to expose the path to the current invocation of the host. Tools should use it when making nested calls. --- MinVer/build/MinVer.targets | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/MinVer/build/MinVer.targets b/MinVer/build/MinVer.targets index c094e9fc..8ec25fcb 100644 --- a/MinVer/build/MinVer.targets +++ b/MinVer/build/MinVer.targets @@ -14,6 +14,11 @@ $(NoWarn);NU5105 + + $(DOTNET_HOST_PATH) + dotnet + + @@ -45,7 +50,7 @@ - +