Ignore template sln during CodeCheck

This commit is contained in:
Pranav K 2019-12-05 13:27:56 -08:00
parent ca16c7fd59
commit 334961ef25
No known key found for this signature in database
GPG Key ID: F748807460A27E91
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,8 @@ try {
Get-ChildItem "$repoRoot/*.sln" -Recurse `
| ? {
# These .sln files are used by the templating engine.
($_.Name -ne "BlazorServerWeb_CSharp.sln")
($_.Name -ne "BlazorServerWeb_CSharp.sln") -and
($_.Name -ne "BlazorWasm-CSharp.sln")
} `
| % {
Write-Host " Checking $(Split-Path -Leaf $_)"