-
Notifications
You must be signed in to change notification settings - Fork 453
Open
Labels
Description
Usage Information
.Net 9
Description
Line 16 in 27e8077
| $BuildProjectFile = "$PSScriptRoot\build\_build.csproj" |
$BuildProjectFile = "$PSScriptRoot\build\_build.csproj"
This path syntax is no longer recognized by the latest powershell
Reproduction Steps
get latest pwsh and try ./build.ps1
Expected Behavior
nuke run
Actual Behavior
nuke failed, can't find _build.csproj
Regression?
No response
Known Workarounds
$BuildProjectFile = Join-Path $PSScriptRoot 'build/_build.csproj'
Could you help with a pull-request?
No
Reactions are currently unavailable