diff --git a/.github/actions/spell-check/expect.txt b/.github/actions/spell-check/expect.txt index 5d134a28f7..03f9f0a34d 100644 --- a/.github/actions/spell-check/expect.txt +++ b/.github/actions/spell-check/expect.txt @@ -192,6 +192,7 @@ CDeclaration CDEF cdpx CENTERALIGN +ceq cguid changecursor Changemove @@ -234,6 +235,7 @@ CMock CMONITORS cmpgt cmyk +cne cnt Cocklebiddy coclass diff --git a/.pipelines/verifyArm64Configuration.ps1 b/.pipelines/verifyArm64Configuration.ps1 index 6a9cdd3986..56e06c8f65 100644 --- a/.pipelines/verifyArm64Configuration.ps1 +++ b/.pipelines/verifyArm64Configuration.ps1 @@ -22,7 +22,7 @@ catch { $solutionFile = [Microsoft.Build.Construction.SolutionFile]::Parse($solution); $arm64SlnConfigs = $solutionFile.SolutionConfigurations | Where-Object { - $_.PlatformName -eq "ARM64" + $_.PlatformName -ceq "ARM64" }; # Should have two configurations. Debug and Release. @@ -39,9 +39,9 @@ $projects = $solutionFile.ProjectsInOrder | Where-Object { # Enumerate through the projects and add any project with a mismatched platform and project configuration foreach ($project in $projects) { foreach ($slnConfig in $arm64SlnConfigs.FullName) { - if ($project.ProjectConfigurations.$slnConfig.FullName -ne $slnConfig) { - $errorTable[$project.ProjectName] += @("" - | Select-Object @{n = "Configuration"; e = { $project.ProjectConfigurations.$slnConfig.FullName } }, + if ($project.ProjectConfigurations.$slnConfig.FullName -cne $slnConfig) { + $errorTable[$project.ProjectName] += @(""` + | Select-Object @{n = "Configuration"; e = { $project.ProjectConfigurations.$slnConfig.FullName ?? "Missing platform" } }, @{n = "ExpectedConfiguration"; e = { $slnConfig } }) } }