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