We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0a94a commit 118e7b0Copy full SHA for 118e7b0
docs/build-dev.ps1
@@ -29,14 +29,14 @@ EnsureHttpServerIsInstalled
29
VerifySuccessExitCode
30
31
if (-Not $NoBuild -Or -Not (Test-Path -Path _site)) {
32
- Remove-Item _site -Recurse -ErrorAction Ignore
+ Remove-Item _site\* -Recurse -ErrorAction Ignore
33
34
dotnet build .. --configuration Release
35
36
37
Invoke-Expression ./generate-examples.ps1
38
} else {
39
- Remove-Item _site/xrefmap.yml -ErrorAction Ignore
40
}
41
42
dotnet tool restore
@@ -60,4 +60,4 @@ Write-Host "Web server started. Press Enter to close."
60
$key = [Console]::ReadKey()
61
62
Stop-Job -Id $webServerJob.Id
63
-Get-job | Remove-Job
+Get-job | Remove-Job -Force
0 commit comments