[ci-fix-net11] Fixed Build Error in net 11 branch - #37029
Merged
Merged
Conversation
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:45 — with
GitHub Actions
Inactive
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 37029Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 37029" |
|
Azure Pipelines: Successfully started running 1 pipeline(s). There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
|
Hey there @@NafeelaNazhir! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:46 — with
GitHub Actions
Inactive
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:48 — with
GitHub Actions
Inactive
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:50 — with
GitHub Actions
Inactive
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:51 — with
GitHub Actions
Inactive
NafeelaNazhir
temporarily deployed
to
copilot-pat-pool
August 3, 2026 07:52 — with
GitHub Actions
Inactive
Contributor
|
/azp run maui-pr-uitests , maui-pr-devicetests |
|
Azure Pipelines: Successfully started running 2 pipeline(s). |
sheiksyedm
marked this pull request as ready for review
August 3, 2026 11:58
|
Azure Pipelines: Successfully started running 1 pipeline(s). There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes a net11.0 build break by removing duplicate entries from the iOS and MacCatalyst PublicAPI.Unshipped.txt baselines, so PublicAPI validation no longer reports duplicate definitions.
Changes:
- Removed a duplicated block of 14 PublicAPI entries from the MacCatalyst Unshipped file.
- Removed the same duplicated block of 14 PublicAPI entries from the iOS Unshipped file.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt | Removes duplicate PublicAPI lines while preserving a single canonical set of the same API entries elsewhere in the file. |
| src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt | Removes duplicate PublicAPI lines while preserving a single canonical set of the same API entries elsewhere in the file. |
kubaflo
approved these changes
Aug 3, 2026
Vignesh-SF3580
pushed a commit
to Vignesh-SF3580/maui
that referenced
this pull request
Aug 10, 2026
<!-- Please let the below note in for people that find this PR --> > [!NOTE] > Are you waiting for the changes in this PR to be merged? > It would be very helpful if you could [test the resulting artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from this PR and let us know in a comment if this change resolves your issue. Thank you! ### Description This PR resolves a build error on `net11.0` caused by duplicate public API entries. Build Link: https://dev.azure.com/dnceng-public/public/_build/results?buildId=1536553&view=logs&j=a4801b0c-147f-5c8c-962a-741d86502051&t=a2489dc5-c5a7-5201-88b6-5de312b29600 **Fix:** Removed the 14 duplicate lines from: - `src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt` - `src/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txt` No functional or API changes — just removes the duplicates so the build passes again. dotnet#35846 - This PR introduced the unwanted changes
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Are you waiting for the changes in this PR to be merged?
It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!
Description
This PR resolves a build error on
net11.0caused by duplicate public API entries.Build Link: https://dev.azure.com/dnceng-public/public/_build/results?buildId=1536553&view=logs&j=a4801b0c-147f-5c8c-962a-741d86502051&t=a2489dc5-c5a7-5201-88b6-5de312b29600
Fix: Removed the 14 duplicate lines from:
src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txtsrc/Core/src/PublicAPI/net-maccatalyst/PublicAPI.Unshipped.txtNo functional or API changes — just removes the duplicates so the build passes again.
#35846 - This PR introduced the unwanted changes