Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix invalid XML in design-time targets #9617

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
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 9.0.200. -->
<Target Name="CollectPrunePackageReferences" Returns="@(PrunePackageReference)">
<Target Name="CollectPrunePackageReferences" Returns="@(PrunePackageReference)" />

<!-- Collect any VS setup component IDs that should be installed for this project to work correctly in VS. -->
<Target Name="CollectSuggestedVisualStudioComponentIds"
Expand Down
Loading