diff --git a/.pipelines/verifyNoticeMdAgainstNugetPackages.ps1 b/.pipelines/verifyNoticeMdAgainstNugetPackages.ps1 index 2ee58da74556..ebef8412a7a2 100644 --- a/.pipelines/verifyNoticeMdAgainstNugetPackages.ps1 +++ b/.pipelines/verifyNoticeMdAgainstNugetPackages.ps1 @@ -46,8 +46,14 @@ $totalList = $projFiles | ForEach-Object -Parallel { foreach($p in $temp) { + # ignore "Auto-referenced" string in the output + if ($p -match "Auto-referenced") { + continue + } + # breaking item down to usable array and getting 1 and 2, see below of a sample output # > PACKAGE VERSION VERSION + # if a package is Auto-referenced, "(A)" will appear in position 1 instead of a version number. $p = -split $p $p = $p[1, 2] diff --git a/NOTICE.md b/NOTICE.md index 78a1f0e1cd0b..431e84e97c52 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -1326,6 +1326,7 @@ EXHIBIT A -Mozilla Public License. - Microsoft.Extensions.Hosting.WindowsServices 9.0.0 - Microsoft.Extensions.Logging 9.0.0 - Microsoft.Extensions.Logging.Abstractions 9.0.0 +- Microsoft.NET.ILLink.Tasks (A) - Microsoft.Toolkit.Uwp.Notifications 7.1.2 - Microsoft.Web.WebView2 1.0.2739.15 - Microsoft.Win32.SystemEvents 9.0.0 diff --git a/src/modules/peek/Peek.UI/Models/NeighboringItems.cs b/src/modules/peek/Peek.UI/Models/NeighboringItems.cs index f6a9a744f37c..c528cc2b7ebc 100644 --- a/src/modules/peek/Peek.UI/Models/NeighboringItems.cs +++ b/src/modules/peek/Peek.UI/Models/NeighboringItems.cs @@ -10,7 +10,7 @@ namespace Peek.UI.Models { - public class NeighboringItems : IReadOnlyList + public partial class NeighboringItems : IReadOnlyList { public IFileSystemItem this[int index] => Items[index] = Items[index] ?? ShellItemArray.GetItemAt(index).ToIFileSystemItem(); diff --git a/src/modules/peek/Peek.UI/Models/NeighboringItemsEnumerator.cs b/src/modules/peek/Peek.UI/Models/NeighboringItemsEnumerator.cs index cedc1570e31a..219ea602acba 100644 --- a/src/modules/peek/Peek.UI/Models/NeighboringItemsEnumerator.cs +++ b/src/modules/peek/Peek.UI/Models/NeighboringItemsEnumerator.cs @@ -10,7 +10,7 @@ namespace Peek.UI.Models { - public class NeighboringItemsEnumerator : IEnumerator + public partial class NeighboringItemsEnumerator : IEnumerator { public IFileSystemItem Current => Items[CurrentIndex]; diff --git a/src/modules/peek/Peek.UI/Peek.UI.csproj b/src/modules/peek/Peek.UI/Peek.UI.csproj index 357f11a5a34d..cb643252f1ec 100644 --- a/src/modules/peek/Peek.UI/Peek.UI.csproj +++ b/src/modules/peek/Peek.UI/Peek.UI.csproj @@ -2,6 +2,7 @@ + PowerToys.Peek.UI