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
if we want to see progress as well then we can use
dotnet stryker --project "$csprojPath" --solution $solutionPath --reporter "json" --reporter "progress"
dotnet stryker --project-file "$csprojPath" --solution-path $solutionPath --reporters "['json', 'progress']"
powershell is not accepting this command. When I modified it todotnet stryker --project "$csprojPath" --solution $solutionPath --reporter "json"
then it worked