fix issue with release build on VSO

This commit is contained in:
Andrew Stanton-Nurse 2015-11-16 10:45:19 -08:00
parent d0f40917bc
commit 6e3ade1672

View file

@ -61,7 +61,11 @@ Download it from https://www.cmake.org
mkdir $HostDir | Out-Null
}
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.exe" $HostDir
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb" $HostDir
if (Test-Path "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb")
{
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb" $HostDir
}
} finally {
popd
}