changeset 103:9ff982a9213e

report full pdb file path instead of file name when collecting pdb signatures
author Evgeniy.Koshkin@unit-519.Labs.IntelliJ.Net
date Mon, 16 May 2016 19:43:39 +0300
parents 0e927b14ccf1
children 1c462701ed75
files jet-symbols/src/JetBrains.CommandLine.Symbols/DumpFilesSignCommandBase.cs
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/jet-symbols/src/JetBrains.CommandLine.Symbols/DumpFilesSignCommandBase.cs	Mon May 16 19:40:51 2016 +0300
+++ b/jet-symbols/src/JetBrains.CommandLine.Symbols/DumpFilesSignCommandBase.cs	Mon May 16 19:43:39 2016 +0300
@@ -56,7 +56,7 @@
       foreach (KeyValuePair<FileSystemPath, string> signature in signatures)
       {
         XmlElement element = node.CreateElement("file-sign-entry");
-        element.CreateAttributeWithNonEmptyValue("file", signature.Key.Name);
+        element.CreateAttributeWithNonEmptyValue("file", signature.Key.FullPath);
         string str = signature.Value;
         if (str != null)
           element.CreateAttributeWithNonEmptyValue("sign", str);