Domanda

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?

È stato utile?

Soluzione

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"

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top