Skip to content

Commit 334961e

Browse files
committed
Ignore template sln during CodeCheck
1 parent ca16c7f commit 334961e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eng/scripts/CodeCheck.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ try {
129129
Get-ChildItem "$repoRoot/*.sln" -Recurse `
130130
| ? {
131131
# These .sln files are used by the templating engine.
132-
($_.Name -ne "BlazorServerWeb_CSharp.sln")
132+
($_.Name -ne "BlazorServerWeb_CSharp.sln") -and
133+
($_.Name -ne "BlazorWasm-CSharp.sln")
133134
} `
134135
| % {
135136
Write-Host " Checking $(Split-Path -Leaf $_)"

0 commit comments

Comments
 (0)