Docs
Uploading Symbols

Uploading Symbols

Learn how to upload debug symbols to the Symbols Storage

Prerequesites: The API Key used as --api-key needs symbols.upload permissions.

Uploading via CLI

At the end of your automated build process, you should upload your debug symbols so they can be later retrieved by Third-Party crash reporter to generate a callstack or by Visual Studio when you open a crash dump.

Use CLI debug-collect command to scan a folder (or a single file) and upload the debug symbols (e.g.: PDB files).

Arguments:

  • --input-path: Path to upload from. Use . for the current folder. This will be scanned recursively.
  • --api-key: API Key used for authentificating requests

Examples:

./casttocloud-cli.exe debug-collect --input-path "F:/Builds/Windows/" --api-key "API-KEY"

Example output:

Example CLI Upload output