Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2013 tries to load iisexpress.pdb

I just upgraded to VS 2013 from VS 2012. The solution opened fine from where it was. However, when I run it, I get an error relating to loading iisexpress.pdb.

If I hit Continue up on the toolbar, it will do so and seemingly run the app without any trouble. I've tried emptying the symbol cache and reloading, as well as not loading any symbols. I've also tried using "local IIS" instead of "IIS express", but this requires admin privileges, and even then I couldn't seem to get it actually working (VS just hung and never even opened IE).

Since things seem to work fine when I continue past this error, I'd really just like to know why this is happening and how to stop it. I'm guessing from the message that it's trying to actually load the debugging symbols for "iisexpress.exe", which of course I don't have. It never did this in VS 2012 so I'm not sure why it's doing it in VS 2013.

like image 361
Starfleet Security Avatar asked Feb 23 '14 14:02

Starfleet Security


1 Answers

Uncheck Native debugging in Project Properties.

This happened because you told VS to debug native code, and something (I'm not sure what) made it break in IIS Express.

like image 71
SLaks Avatar answered Sep 27 '22 23:09

SLaks