Skip to content

Commit 382427a

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/visualstudio-docs-pr (branch live)
2 parents ee42623 + bbf21fc commit 382427a

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

docs/debugger/debug-using-the-just-in-time-debugger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ Just-In-Time debugging may still be enabled even if Visual Studio is no longer i
5252

5353
1. From the Windows **Start** menu, run the **Registry Editor** (*regedit.exe*).
5454

55-
2. In the **Registry Editor** window for 64-bit computers, locate and delete the following registry entries:
55+
2. In the **Registry Editor** window, locate and delete the following registry entries if they exist:
5656

5757
- **HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\\.NETFramework\DbgManagedDebugger**
5858

5959
- **HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger**
6060

6161
:::image type="content" source="../debugger/media/dbg-jit-registry.png" alt-text="JIT registry key" border="true":::
6262

63-
3. If the following registry entries are present, or your computer is running a 32-bit operating system, delete the following entries:
63+
3. Also delete the following registry entries if they exist:
6464

6565
- **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\\.NETFramework\DbgManagedDebugger**
6666

docs/ide/csharp-developer-productivity.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: TerryGLee
55
ms.author: tglee
66
manager: jmartens
77
ms.technology: vs-ide-general
8-
ms.date: 07/31/2022
8+
ms.date: 09/19/2022
99
ms.topic: conceptual
1010
helpviewer_keywords:
1111
- editor
@@ -60,7 +60,7 @@ The following are popular Visual Studio shortcuts:
6060
| **Ctrl**+**\\**,**Ctrl**+**E** (Default Profile) or **Ctrl**+**W**,**E** (C# Profile) | View Error List | See all errors in your document, project, or solution |
6161
| **Alt** + **PgUp/PgDn** | Go to Next/Previous Issue | Jump to the previous/next error, warning, suggestion in your document |
6262
| **Ctrl**+**K**,**/** | Toggle single line comment/uncomment | This command adds or removes a single line comment depending on whether your selection is already commented |
63-
| **Ctrl**+**Shift**+**/** | Toggle block comment/uncomment | This command adds or removes block comments depending on what you have selected |
63+
| **Ctrl**+**Shift**+**/** | Toggle block comment/uncomment | This command adds or removes block comments depending on what you've selected |
6464

6565
> [!NOTE]
6666
> Some extensions unbind the default Visual Studio keybindings. You can restore your keybindings to their defaults by going to **Tools** > **Import and Export Settings** > **Reset all settings** or **Tools** > **Options** > **Keyboard** > **Reset**.
@@ -152,7 +152,7 @@ Check out the [.NET code-style rule options](/dotnet/fundamentals/code-analysis/
152152

153153
## Code Cleanup
154154

155-
Visual Studio provides on-demand formatting of your code file, including code style preferences, through the **Code Cleanup** feature. To run Code Cleanup, click the broom icon at the bottom of the editor or press **Ctrl**+**K**, **Ctrl**+**E**.
155+
Visual Studio provides on-demand formatting of your code file, including code style preferences, through the **Code Cleanup** feature. To run Code Cleanup, select the broom icon at the bottom of the editor or press **Ctrl**+**K**, **Ctrl**+**E**.
156156

157157
::: moniker range="vs-2022"
158158

@@ -166,7 +166,7 @@ Visual Studio provides on-demand formatting of your code file, including code st
166166

167167
::: moniker-end
168168

169-
You can also run code cleanup across your entire project or solution. Right-click on the project or solution name in **Solution Explorer**, select **Analyze and Code Cleanup**, and then select **Run Code Cleanup**.
169+
You can also run code cleanup across your entire project or solution. Right-click the project or solution name in **Solution Explorer**, select **Analyze and Code Cleanup**, and then select **Run Code Cleanup**.
170170

171171
::: moniker range="vs-2022"
172172

@@ -184,7 +184,7 @@ In addition to formatting your file for spaces, indents, et cetera, **Code Clean
184184

185185
## Refactorings and code fixes
186186

187-
Visual Studio comes with numerous refactorings, code generation actions, and code fixes. Red squiggles represent errors, green squiggles represent warnings, and three gray dots represent code suggestions. You can access code fixes by clicking the light bulb or screwdriver icon, or by pressing **Ctrl**+**.** or **Alt**+**Enter**. Each fix comes with a preview window that shows a live code diff of how the fix works.
187+
Visual Studio comes with numerous refactorings, code generation actions, and code fixes. Red squiggles represent errors, green squiggles represent warnings, and three gray dots represent code suggestions. You can access code fixes by selecting the light bulb or screwdriver icon, or by pressing **Ctrl**+**.** or **Alt**+**Enter**. Each fix comes with a preview window that shows a live code diff of how the fix works.
188188

189189
Popular quick fixes and refactorings include:
190190

@@ -321,9 +321,10 @@ Here's a list of editor and productivity features to make writing code more effi
321321
| Add usings for types in reference assemblies and NuGet packages | Shows an error light bulb with a code fix to install a NuGet package for an unreferenced type | **Tools** > **Options** > **Text Editor** > **C#** > **Advanced** > **Suggest usings for types in reference assemblies** and **Suggest usings for types in NuGet packages** |
322322
| Enable full solution analysis | See all errors in your solution in the **Error List** | **Tools** > **Options** > **Text Editor** > **C#** > **Advanced** > **Enable full solution analysis** |
323323
| Enable navigation to decompiled sources | Allow Go To Definition on types/members from external sources and use the ILSpy decompiler to show method bodies | **Tools** > **Options** > **Text Editor** > **C#** > **Advanced** > **Enable navigation to decompiled sources** |
324-
| Completion/Suggestion Mode | Changes the completion behavior in [IntelliSense](using-intellisense.md). Developers with IntelliJ backgrounds tend to use a non-default setting here. | **Menu** > **Edit** > **IntelliSense** > **Toggle Completion Mode** |
324+
| Completion/Suggestion Mode | Changes the completion behavior in [IntelliSense](using-intellisense.md). Developers with IntelliJ backgrounds tend to use a non-default setting here. | **Edit** > **IntelliSense** > **Toggle Completion Mode** |
325325
| [CodeLens](../ide/find-code-changes-and-other-history-with-codelens.md) | Displays code reference information and change history in the editor. (Source control CodeLens indicators aren't available in Visual Studio Community edition.) | **Tools** > **Options** > **Text Editor** > **All Languages** > **CodeLens** |
326326
| [Code snippets](../ide/visual-csharp-code-snippets.md) | Help stub out common boilerplate code | Type a snippet name and press **Tab** twice. |
327+
| Paste JSON as classes | Copy any JSON fragment to the clipboard and paste it as strongly typed .NET classes into any C# code file. | **Edit** > **Paste Special** > **Paste JSON As Classes** |
327328

328329
## See also
329330

docs/javascript/tutorial-asp-net-core-with-angular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Make sure to install the following:
7070

7171
:::image type="content" source="media/vs-2022/asp-net-core-choose-web-api-template.png" alt-text="Choose the Web API template":::
7272

73-
1. Give your project and solution a name. When you get to the **Additional information** window, select **.NET 6.0** as your target framework.
73+
1. Give your project a name. When you get to the **Additional information** window, select **.NET 6.0** as your target framework.
7474

7575
Once the project is created, Solution Explorer should look like this:
7676

pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ Before creating your pull request, please check your content against these quali
1010
- Should this page be linked to from other pages or Microsoft web sites?
1111
1212
For more information about creating content for docs.microsoft.com, see the contributor guide at https://docs.microsoft.com/contribute/.
13+
14+
When your PR is ready for review, add a comment with the text #sign-off to the Conversation tab.
1315
-->

0 commit comments

Comments
 (0)