[Azure Functions] Improve local NuGet build script by lucaspimentel · Pull Request #8174 · DataDog/dd-trace-dotnet
lucaspimentel
added
the
AI Generated
label
Feb 7, 2026
lucaspimentel
changed the title
Improve Azure Functions NuGet build script
[Azure Functions] Improve NuGet build script
lucaspimentel
deleted the
lpimentel/improve-azure-functions-nuget-build-script
branch
lucaspimentel
changed the title
[Azure Functions] Improve NuGet build script
[Azure Functions] Improve local NuGet build script
lucaspimentel added a commit that referenced this pull request
Feb 13, 2026## Summary of changes - Use separate Nuke verbosity levels for download (`quiet`) vs build (`normal`) targets - Skip building `net461` in local dev script (commented out) - Disable `CheckEolTargetFramework` warning ## Reason for change After #8174 changed default verbosity to `quiet`, the package path output was suppressed, making it harder to locate the generated `.nupkg` file during local development. ## Implementation details In `tracer/tools/Build-AzureFunctionsNuget.ps1`, split `$nukeVerbosity` into two variables: - `$nukeVerbosityDownload`: `verbose`/`quiet` for `DownloadBundleNugetFromBuild` - `$nukeVerbosityBuild`: `verbose`/`normal` for `BuildAzureFunctionsNuget` (shows package path) In `tracer/src/Datadog.AzureFunctions/Datadog.AzureFunctions.csproj`, remove`CheckEolTargetFramework` so we inherit `false` from a parent directory. ## Test coverage Manually tested.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters