How to enable/disable compile errors warning in Visual Studio

前端 未结 1 1355
粉色の甜心
粉色の甜心 2020-12-07 02:40

In debug mode, if there is an error in our application when we press F5 to start debugging, a dialog appears with the warning: \"Your program has an error. Do you want to ru

相关标签:
1条回答
  • 2020-12-07 02:50

    You can turn that prompt on/off in your Visual Studio settings:

    1. From the "Tools" menu, select "Options".
    2. In the dialog that appears, expand "Projects and Solutions", and click "Build and Run".
    3. On the right side, you'll see a combo box labeled "On Run, when build or deployment errors occur".

      • If you want to disable the message box, select either "Do not launch" or "Launch old version" (which will launch the old version automatically).
      • If you want to enable the message box, select "Prompt to launch" which will ask you each time.

       VS "Build and Run" Options

    Of course, as people have suggested in the comments, this means that your code has errors in it somewhere that are preventing it from compiling. You need to use the "Error List" to figure out what those errors are, and then fix them.

    0 讨论(0)
提交回复
热议问题