Files
mech-ai/run_backend.ps1
T
2026-07-17 18:10:59 +08:00

12 lines
315 B
PowerShell

param(
[string]$Urls = "http://127.0.0.1:721",
[string]$Configuration = "Debug"
)
$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent $MyInvocation.MyCommand.Path
$Project = Join-Path $Root "backend-csharp\Agent4.Api\Agent4.Api.csproj"
dotnet run --project $Project -c $Configuration --urls $Urls