Skip to content

Commit

Permalink
Merge pull request #9486 from tmeschter/240614-CollectNuGetAuditSuppr…
Browse files Browse the repository at this point in the history
…essions

Add CollectNuGetAuditSupressions target
  • Loading branch information
tmeschter committed Jun 14, 2024
2 parents 8fdde78 + df5a2b5 commit 0bc075a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,12 @@
sent to NuGet to be restored.-->
<Target Name="CollectPackageReferences" Returns="@(PackageReference)" />

<!-- This target is used to collect the NuGet audit supression items. It is defined by the .NET SDK starting in version 8.0.400, but we need this no-op
implementation when using older SDKs that don't have it; otherwise our design-time builds will fail. The NuGet.targets file in the SDK is imported
_after_ this file, and will override this implementation with the real one (when present).
This can (and should) be removed when we no longer need to support SDKs older than 8.0.400. -->
<Target Name="CollectNuGetAuditSuppressions" Returns="@(NuGetAuditSuppress)" />

<!-- This target is used to collect the SuggestedWorkload items in the project.-->
<Target Name="CollectSuggestedWorkloads"
Returns="@(SuggestedWorkload)"
Expand Down

0 comments on commit 0bc075a

Please sign in to comment.