From 2199c829dadb80df72db5b295e5bc067a77aa213 Mon Sep 17 00:00:00 2001 From: Alex Torres <95253638+AlexVTor@users.noreply.github.com> Date: Mon, 8 Dec 2025 11:50:25 -0800 Subject: [PATCH] Add import statement for path module --- Tasks/NuGetAuthenticateV1/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tasks/NuGetAuthenticateV1/main.ts b/Tasks/NuGetAuthenticateV1/main.ts index 1823edcd88e7..6aa65ef6db7b 100644 --- a/Tasks/NuGetAuthenticateV1/main.ts +++ b/Tasks/NuGetAuthenticateV1/main.ts @@ -1,4 +1,5 @@ import * as path from 'path'; + import * as tl from 'azure-pipelines-task-lib/task'; #if WIF import { configureEntraCredProvider } from "azure-pipelines-tasks-artifacts-common/credentialProviderUtils"; @@ -97,4 +98,4 @@ function isValidFeed(feedUrl?: string | null): boolean { return feedRegex.test(normalized); } -main(); \ No newline at end of file +main();