Skip to content

Commit

Permalink
Merge pull request #10439 from MicrosoftDocs/main638640938436330738sy…
Browse files Browse the repository at this point in the history
…nc_temp

For protected branch, push strategy should use PR and merge to target branch method to work around git push error
  • Loading branch information
learn-build-service-prod[bot] authored Oct 9, 2024
2 parents 3e1a177 + e359c91 commit 83a3df8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/debugger/debug-using-the-just-in-time-debugger.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Debug using the Just-In-Time Debugger
description: Debug using the Just-In-Time Debugger in Visual Studio. Just-In-Time debugging can launch Visual Studio automatically when an app returns errors or crashes.
ms.date: 11/29/2023
ms.date: 10/09/2024
ms.topic: how-to
helpviewer_keywords:
- debugging [Visual Studio], Just-In-Time
Expand Down Expand Up @@ -153,17 +153,17 @@ If Just-In-Time debugging doesn't start when an app crashes, even though it's en

The fix is to add a **DWORD Value** of **Auto**, with **Value data** of **1**, to the following registry keys:

- **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug**
- **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug**

- (For 32-bit machines) **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug**
- (For 32-bit apps on 64-bit machines) **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug**

- Windows Error Reporting could be taking over the error handling on your computer.

To fix this issue, use Registry Editor to add a **DWORD Value** of **Disabled**, with **Value data** of **1**, to the following registry keys:

- **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\Windows Error Reporting**

- (For 32-bit machines) **HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting**
- **HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting**

- (For 32-bit apps on 64-bit machines) **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\Windows Error Reporting**

For more information, see [.WER settings](/windows/desktop/wer/wer-settings).

Expand Down
2 changes: 1 addition & 1 deletion docs/debugger/diagnostic-messages-in-the-output-window.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You can write run-time messages to the **Output** window using the <xref:System.
## Output methods
The <xref:System.Diagnostics.Trace> and <xref:System.Diagnostics.Debug> classes provide the following output methods:

- Various [Write](/dotnet/api/system.diagnostics.debug#methods) methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in previous versions of Visual Basic.
- Various [Write](/dotnet/api/system.diagnostics.debug#methods) methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in older versions of Visual Basic.

- <xref:System.Diagnostics.Debug.Assert%2A?displayProperty=fullName> and <xref:System.Diagnostics.Trace.Assert%2A?displayProperty=fullName> methods, which break execution and output information if a specified condition fails. By default, the `Assert` method displays the information in a dialog box. For more information, see [Assertions in managed code](../debugger/assertions-in-managed-code.md).

Expand Down

0 comments on commit 83a3df8

Please sign in to comment.