From 2e18aa0421be13c7fec0a1e7dfd95fa46324971b Mon Sep 17 00:00:00 2001 From: Weihan Li <7604648+WeihanLi@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:16:59 +0800 Subject: [PATCH] Update setup.ps1 update `net7.0` to `net8.0` for the $binPath --- #scripts/setup.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/#scripts/setup.ps1 b/#scripts/setup.ps1 index e2646fdfd..3db50a59d 100644 --- a/#scripts/setup.ps1 +++ b/#scripts/setup.ps1 @@ -97,7 +97,7 @@ try { [Security.AccessControl.AccessControlType]::Allow ) - $binPath = './bin/Debug/net7.0' + $binPath = './bin/Debug/net8.0' $acl = Get-Acl $binPath $acl.AddAccessRule($aclRule); Set-Acl $binPath -AclObject $acl @@ -110,4 +110,4 @@ Write-Host "" Write-Host "SharpLab setup done." -ForegroundColor White Write-Host "Run " -ForegroundColor White -NoNewLine Write-Host "sl run" -ForegroundColor Cyan -NoNewLine -Write-Host " to start." -ForegroundColor White -NoNewLine \ No newline at end of file +Write-Host " to start." -ForegroundColor White -NoNewLine