Ignore template sln during CodeCheck
This commit is contained in:
parent
ca16c7fd59
commit
334961ef25
|
|
@ -129,7 +129,8 @@ try {
|
||||||
Get-ChildItem "$repoRoot/*.sln" -Recurse `
|
Get-ChildItem "$repoRoot/*.sln" -Recurse `
|
||||||
| ? {
|
| ? {
|
||||||
# These .sln files are used by the templating engine.
|
# 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 $_)"
|
Write-Host " Checking $(Split-Path -Leaf $_)"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue