Skip to content
代码片段 群组 项目
提交 ed812504 编辑于 作者: David Sparer's avatar David Sparer
浏览文件

make portable symbols zip file name easier to distinguish from regular symbols

上级 25b2655d
未找到相关分支
未找到相关标签
无相关合并请求
......@@ -22,7 +22,7 @@ if(-not [string]::IsNullOrEmpty($Env:APPVEYOR_BUILD_FOLDER)) {
Write-Output "Solution Dir: '$($SolutionDir)'"
Write-Output "Target Dir: '$($TargetDir)'"
$ConfigurationName = $ConfigurationName.Trim()
Write-Output "Config Name (tirmmed): '$($ConfigurationName)'"
Write-Output "Config Name (trimmed): '$($ConfigurationName)'"
# Windows Sysinternals Sigcheck from http://technet.microsoft.com/en-us/sysinternals/bb897441
......@@ -37,7 +37,13 @@ if ($ConfigurationName -match "Release") {
Write-Output "Version is $($version)"
$outputZipPath="$($SolutionDir)Release\mRemoteNG-symbols-$($version).zip"
if ($ConfigurationName -match "Portable") {
$zipFilePrefix = "mRemoteNG-Portable-symbols"
} else {
$zipFilePrefix = "mRemoteNG-symbols"
}
$outputZipPath="$($SolutionDir)Release\$zipFilePrefix-$($version).zip"
Write-Output "Creating debug symbols ZIP file $($outputZipPath)"
Remove-Item -Force $outputZipPath -ErrorAction SilentlyContinue
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
想要评论请 注册