Skip to content

Commit e844a95

Browse files
author
Greg Van Liew
authored
Merge pull request #138 from Microsoft/master
Publish this afternoon's updates to live
2 parents 67e3c87 + aa09050 commit e844a95

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

docs/debugger/continuing-execution-after-an-exception.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,12 @@ translation.priority.ht:
4949
- "zh-tw"
5050
---
5151
# Continuing Execution After an Exception
52-
When the debugger breaks execution because of an exception, a dialog box appears. For Visual Basic or C#, you will see the **Exception Assistant** dialog box, by default. For C++, you will see the older **Exception** dialog box. If you are using Visual Basic or C# but have disabled the **Exception Assistant** in the **Options** dialog box, you will see the **Exception** dialog box.
52+
When the debugger breaks execution because of an exception, you will see the **Exception Helper**, by default. If you have disabled the **Exception Helper** in the **Options** dialog box, you will see the **Exception Assistant** (C# or Visual Basic) or the **Exception** dialog box (C++).
5353

54-
When the **Exception Assistant** or **Exception** dialog box appears, you can try to fix the problem that caused the exception.
54+
When the **Exception Helper** appears, you can try to fix the problem that caused the exception.
5555

56-
## Managed Code
57-
In managed code, you can continue execution in the same thread after an unhandled exception. The **Exception Assistant** unwinds the call stack to the point where the exception was thrown.
58-
59-
## Native Code
60-
In native C/C++, you have two options:
61-
62-
- You can click **Break** and try to fix the problem. While you are in Break mode, you can unwind the call stack by right-clicking on a frame in the **Call Stack** window and selecting **Unwind to this Frame** on the shortcut menu. When you continue to debug, the **Exception** dialog box appears again if you have not fixed the problem. Otherwise, the **Exception** dialog box will not reappear.
63-
64-
- You can click **Continue** to continue execution without trying to fix the problem. The **Exception** dialog box reappears.
56+
## Managed and Native Code
57+
In managed and native code, you can continue execution in the same thread after an unhandled exception. The **Exception Helper** unwinds the call stack to the point where the exception was thrown.
6558

6659
## Mixed Code
6760
If you hit an unhandled exception while debugging a mixed native and managed code, operating system constraints prevent unwinding the call stack. If you try rewinding the call stack using the shortcut menu, an error message explains that the debugger cannot unwind from an unhandled except during mixed-code debugging.

docs/debugger/remote-debugging.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ You can debug a Visual Studio application that has been deployed on a different
4949

5050
1. On the device or server machine that you want to debug (rather than the machine running Visual Studio), open the correct download page for the remote tools.
5151

52-
For Update 3 of the remote tools for Visual Studio 2015, open [this download page](https://www.visualstudio.com/downloads/#remote-tools-for-visual-studio-2015).
52+
Get the [remote tools for Visual Studio 2017 RC](https://www.visualstudio.com/downloads/#remote-tools-for-visual-studio-2017-rc)
53+
54+
Get [Update 3 of the remote tools for Visual Studio 2015](https://www.visualstudio.com/downloads/#remote-tools-for-visual-studio-2015-update-3).
5355

5456
If you are not using Update 3 of Visual Studio 2015, open the [download page at My.VisualStudio.com](https://my.visualstudio.com/Downloads?q=remote%20tools%20visual%20studio%202015) instead.
5557

docs/install/use-command-line-parameters-to-install-visual-studio.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,12 @@ When you install Visual Studio 2017 RC from a command prompt, you can use the fo
6060
| ```--compatInstallDir <dir>``` | Optional: The target installation directory for legacy compatibility payloads. |
6161
| ```--layoutDir <dir>```, ```--layoutDirectory <dir>``` | Optional: The layout directory in which to find packages.|
6262

63+
6364
> [!IMPORTANT]
6465
> While Visual Studio 2017 RC in general is supported for use in a production environment, those workloads and components that are marked "Preview" in the installation UI are not supported for use in a production environment.
6566
6667
## See Also
67-
<<<<<<< HEAD
68-
=======
6968

70-
>>>>>>> 20cfedc2a6134919f1abe01d5f9b8fdea939f1ea
7169
* [Install Visual Studio](install-visual-studio.md)
7270
* [Create an offline installation of Visual Studio 2017 RC](create-an-offline-installation-of-visual-studio.md)
7371
* [Report a problem with Visual Studio](../ide/how-to-report-a-problem-with-visual-studio-2017)

0 commit comments

Comments
 (0)