Add netstandard (winui 0) to sign and release matrices #758
  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.
  
    
  
    
Summary
Fixes matrix mismatch causing netstandard-only packages to be built but never signed or released.
Problem
The
build.ymlworkflow has a matrix inconsistency across jobs:winui: [0, 2, 3](includes netstandard)winui: [2, 3](excludes netstandard)winui: [2, 3](excludes netstandard)This causes netstandard-only components like
Extensions.DependencyInjectionto be built and packaged (creatingnuget-packages-winui0artifacts) but never processed by downstream sign/release jobs. The packages are orphaned after the package job completes.Root Cause
The sign and release jobs were added by copying infrastructure from the mainline Windows Community Toolkit repository. Since mainline has no netstandard-only components, the copied code used
winui: [2, 3]. Labs-Windows requires[0, 2, 3]to match its existing package job that supports netstandard-only components.Solution
This PR adds
0to both matrices to match Labs' requirements:Sign job (line ~394):
Release job (line ~458):
The signing and release logic already handles packages generically using
**/*.nupkgpatterns, so no additional changes are needed.Impact
Testing Recommendations
release/weekly/251101)Related