dotnet-sdk-setup-hook: run pre/postConfigureNuGet hooks

This commit is contained in:
David McFarland 2024-09-08 22:35:13 -03:00
parent 65b556ed83
commit ce92a4277e

View File

@ -49,6 +49,8 @@ createNugetDirs() {
}
configureNuget() {
runHook preConfigureNuGet
local x
for x in "${!_nugetInputs[@]}"; do
@ -97,6 +99,8 @@ configureNuget() {
fi
done
fi
runHook postConfigureNuGet
}
if [[ -z ${dontConfigureNuget-} ]]; then