rajbos / Stryker.MultipleProjectRunner

Runs Stryker for multiple .NET Core projects and aggregates the results
MIT License
19 stars 4 forks source link

Stryker command under Run Stryker.ps1 is not working #4

Closed sarthak4allworks closed 2 years ago

sarthak4allworks commented 2 years ago

dotnet stryker --project-file "$csprojPath" --solution-path $solutionPath --reporters "['json', 'progress']" powershell is not accepting this command. When I modified it to dotnet stryker --project "$csprojPath" --solution $solutionPath --reporter "json" then it worked

sarthak4allworks commented 2 years ago

if we want to see progress as well then we can use dotnet stryker --project "$csprojPath" --solution $solutionPath --reporter "json" --reporter "progress"