문제

Recently I noticed that when downloading symbols from Microsoft symbol store using SymChk it brings DLLs as well as PDBs. I'm wondering if it is possible to store both binaries and symbols using standard microsoft tools like SymChk/SymStore?

도움이 되었습니까?

해결책

The answer was pretty obvious. Just do not mention the extension you want to add. for example, instead of using:

add /r /f "\buildserver\buildresults*.pdb" /s "\fileserver\R&D\Artifacts\Symbols\" /c "Adding production symbols" /t "server symbols" /v "1.0.0.1"

use:

add /r /f "\buildserver\buildresults*.*" /s "\fileserver\R&D\Artifacts\Symbols\" /c "Adding production symbols" /t "server symbols" /v "1.0.0.1"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top