Browse Source

Ignore template sln during CodeCheck

Pranav K 6 years ago
parent
commit
334961ef25
1 changed files with 2 additions and 1 deletions
  1. 2 1
      eng/scripts/CodeCheck.ps1

+ 2 - 1
eng/scripts/CodeCheck.ps1

@@ -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 $_)"