run-windows.ps1 336 B

12345678
  1. param([string]$scenarios="[default]", [string]$server="kestrel")
  2. $scenarios = (-split $scenarios) -join ","
  3. cd Benchmarks
  4. dotnet restore
  5. dotnet build -c Release
  6. Start-Process -NoNewWindow dotnet "bin\Release\netcoreapp1.1\Benchmarks.dll server.urls=http://*:8080 server=$server threadCount=1 NonInteractive=true scenarios=$scenarios"