Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/task/RunResharperCodeAnalysisTool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Set-Results {
# Gather inputs

$inspectCodeExePath = [System.IO.Path]::GetFullPath([System.IO.Path]::Combine($commandLineInterfacePath, "InspectCode.exe"));
$tempDownloadFolder = $Env:BUILD_STAGINGDIRECTORY
$tempDownloadFolder = [System.IO.Path]::Combine($Env:BUILD_SOURCESDIRECTORY , "resharper")

if(!(Test-Path $inspectCodeExePath)) {
# Download Resharper from nuget
Expand Down Expand Up @@ -92,7 +92,7 @@ Write-Output "Inspecting code for $solutionOrProjectPath"

$arguments = """$solutionOrProjectFullPath"" /o:""$inspectCodeResultsPath"" $additionalArguments"

Write-Output "Invoking InspectCode.exe using arguments $arguments"
Write-Output "Invoking InspectCode.exe using arguments $arguments"

Start-Process -FilePath $inspectCodeExePath -ArgumentList $arguments -Wait

Expand Down