Adrian K
Adrian K

Reputation: 10225

Symbols for kernelbase.dll could not be downloaded - UWP, Release build only, after Windows 10 update

I've just updated my Windows 10 install to the latest anniversary update; this seems to have included:

I noticed that a UWP app I had developed (and successfully run previously) which is pinned to my Start menu seemed to drop it's tile graphic, and didn't start when I tried it.

I then went to run it from VS (Release build) and got the following dialogs, the app still seemed to run ok though.

enter image description here

enter image description here

I don't get these dialogs when running a Debug build. I tried to enable the symbols settings under TOOLS->Options->Debugging->Symbols. Enable "Microsoft Symbols Servers" as per this but it hasn't resolved the issue. I do have internet connectivity - but haven't yet been able to try an alternative connection so as to rule out any new network rules. I have not yet tried to build a brand new blank UWP app to see how that behaves.

Any ideas? How worried should I be?

Upvotes: 2

Views: 2621

Answers (2)

Emil
Emil

Reputation: 6901

Under Debbuging->Symbols there is option as shown in the image, it was unchecked for me. If you check, it forces symbols to be cached and error was gone. It looks like for some reason symbol cache wasnt able to loaded or downloaded.

enter image description here

Upvotes: 2

Xeorge Xeorge
Xeorge Xeorge

Reputation: 462

i ran on the same issue today, since this is so rare occurrence, i had to figure it out my self by tweaking settings around, eventually i found how to fix it.

Go to Project properties->Build and uncheck the "compile with .Net Native Chain" option.

Upvotes: 1

Related Questions