I need to know to the role of .appxsym in debugging my application? Is it required? or it is only used to send crash reporting details to developer(developer's dashboard).
I was trying to debug the crash with WinDBG through following steps:-
1)Opening a command prompt at C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86
2)Setting _NT_SYMBOL_PATH and _NT_ALT_SYMBOL_PATH as srv*C:\Symcache*http://msdl.microsoft.com/download/symbols
3)Opening WinDBG through windbg -y and then executing commands !sym noisy and .reload /f
and then I am getting the following errors
Windows.ApplicationMod The system cannot find the file specified : srv*c:\symcache*http://msdl.microsoft.com/download/symbols
The SYMSRV client failed to find a file in the UNC store, or there
is an invalid UNC store (an invalid path or the pingme.txt file is
not present in the root directory), or the file is present in the
symbol server exclusion list.
Windows.Storage.ni The system cannot find the file specified : srv*c:\symcache*http://msdl.microsoft.com/download/symbols
The SYMSRV client failed to find a file in the UNC store, or there
is an invalid UNC store (an invalid path or the pingme.txt file is
not present in the root directory), or the file is present in the
symbol server exclusion list.
Does appxsym associated with this package can remove these errors or there is something I am missing out?
Is there a way where I can fetch symbol file from developer dashboard for the package deployed on App Hub?