From 8121f679e497c9b55441e7c33872643e505d16e2 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Wed, 4 Mar 2026 11:08:07 -0600 Subject: [PATCH] [build] Ignore MAUI public API analyzer errors (RS0016) in MAUI integration lane Set PublicApiType=Generate on the maui_tests_integration job to skip the Microsoft.CodeAnalysis.PublicApiAnalyzers package, which produces RS0016 errors for new/changed MAUI APIs that dotnet/android does not need to validate. --- build-tools/automation/azure-pipelines.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-tools/automation/azure-pipelines.yaml b/build-tools/automation/azure-pipelines.yaml index 2e179e32117..8b1dd81bb7d 100644 --- a/build-tools/automation/azure-pipelines.yaml +++ b/build-tools/automation/azure-pipelines.yaml @@ -120,6 +120,8 @@ extends: clean: all variables: BuildVersion: $(Build.BuildId) + # Ignore MAUI's public API analyzer errors (RS0016) - dotnet/android does not care about those + PublicApiType: Generate steps: - checkout: maui clean: true