Skip to content

Commit 2e18aa0

Browse files
authored
Update setup.ps1
update `net7.0` to `net8.0` for the $binPath
1 parent 078c4e2 commit 2e18aa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

#scripts/setup.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ try {
9797
[Security.AccessControl.AccessControlType]::Allow
9898
)
9999

100-
$binPath = './bin/Debug/net7.0'
100+
$binPath = './bin/Debug/net8.0'
101101
$acl = Get-Acl $binPath
102102
$acl.AddAccessRule($aclRule);
103103
Set-Acl $binPath -AclObject $acl
@@ -110,4 +110,4 @@ Write-Host ""
110110
Write-Host "SharpLab setup done." -ForegroundColor White
111111
Write-Host "Run " -ForegroundColor White -NoNewLine
112112
Write-Host "sl run" -ForegroundColor Cyan -NoNewLine
113-
Write-Host " to start." -ForegroundColor White -NoNewLine
113+
Write-Host " to start." -ForegroundColor White -NoNewLine

0 commit comments

Comments
 (0)