Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I've encountered this before. Not sure what causes it, but generally it is one of a couple of things to fix it.</p> <ol> <li>make sure you are building in debug and not release</li> <li>close VS, go to the project's dir and delete the obj and bin directories. Reopen in VS and rebuild.</li> <li>there is an option under tools - options - build (iirc) that allows for checking if source is same as code file. However, you should see a message in output window if this is the case.</li> <li>on the project properties in the build (iirc) you can throttle the pdb file from full debug symbols to no pdb at all. If you are not the only person on the project check this setting still has full pdb enabled (low probability this got changed though)</li> <li>make sure you're on the right platform that you are building to (x64 vs x32)</li> </ol> <p>...lots more, but a starting place...</p> <p>Addendum as per comment...</p> <p>So, those messages are good. It is saying there are no problems (but it sounds like you already know that :) ). I would start with the general debug options you mention. Do this on a hello world app. That way you can troubleshoot the lowest common first. Here are my settings. Try to match them and see if that works. For example, I know "ask before deleting breakpoint" is irrelevant, but "break all processes when one process breaks" is important. So, I just added them all to make it easier to troubleshoot.</p> <p><img src="https://i.stack.imgur.com/CSXdn.png" alt="Tools &gt; Options &gt; Debugging"></p> <p><img src="https://i.stack.imgur.com/svM0a.png" alt="Tools &gt; Options &gt; Debugging"></p> <p>ALso, make sure you are getting a red dot here like so in your code in visual studio (I've seen instances where VS won't let you put this here): </p> <p><img src="https://i.stack.imgur.com/T2fFn.png" alt="Debug Hello World"></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload