Skip to content

Commit 7f62930

Browse files
authored
Merge pull request #6926 from MicrosoftDocs/master637636287652562378
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 3603c49 + 09c095b commit 7f62930

File tree

132 files changed

+1086
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+1086
-198
lines changed

docs/debugger/attach-to-running-processes-with-the-visual-studio-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Attach to running processes with the debugger"
33
description: Discover how to attach the Visual Studio debugger to a running process on a local or remote computer.
44
ms.custom: "SEO-VS-2020"
5-
ms.date: "06/12/2020"
5+
ms.date: "06/28/2021"
66
ms.topic: "conceptual"
77
f1_keywords:
88
- "vs.debug.processes.attach"

docs/debugger/create-custom-visualizers-of-data.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Create custom data visualizers | Microsoft Docs"
33
description: Visual Studio debugger visualizers are components that display data. Learn about the six standard visualizers, and about how you can write or download others.
44
ms.custom: SEO-VS-2020
5-
ms.date: "07/13/2021"
5+
ms.date: "07/29/2021"
66
ms.topic: "conceptual"
77
f1_keywords:
88
- "vs.debug.visualizer.troubleshoot"
@@ -41,10 +41,14 @@ You can write a custom visualizer for an object of any managed class except for
4141

4242
The architecture of a debugger visualizer has two parts:
4343

44-
- The *debugger side* runs within the Visual Studio debugger, and creates and displays the visualizer user interface.
44+
- The *debugger side* runs within the Visual Studio debugger, and creates and displays the visualizer user interface.
45+
46+
Because Visual Studio executes on the .NET Framework Runtime, this component has to be written for .NET Framework. For this reason, it is not possible to write it for .NET Core.
4547

4648
- The *debuggee side* runs within the process Visual Studio is debugging (the *debuggee*). The data object to visualize (for example, a String object) exists in the debuggee process. The debuggee side sends the object to the debugger side, which displays it in the user interface you create.
4749

50+
The runtime for which you build this component should match the one in which the debuggee process will run, that is, either .NET Framework or .NET Core.
51+
4852
The debugger side receives the data object from an *object provider* that implements the <xref:Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider> interface. The debuggee side sends the object through the *object source*, which is derived from <xref:Microsoft.VisualStudio.DebuggerVisualizers.VisualizerObjectSource>.
4953

5054
The object provider can also send data back to the object source, which lets you write a visualizer that can edit data. You override the object provider to talk to the expression evaluator and the object source.
@@ -80,8 +84,8 @@ This section describes the steps you should take to make sure your visualizer is
8084
this scenario.
8185

8286
- For compatibility reasons, the <xref:Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer.Show%2A> method
83-
that was overridden in the preceding section still takes in an <xref:Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider>. Nonetheless, it is actually of type <xref:Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider2>.
84-
Therefore, cast the `objectProvider` object to the updated interface.
87+
that was overridden in the preceding section still takes in an <xref:Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider>. However, starting in Visual Studio 2019 version 16.10, it is actually of type <xref:Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider2>.
88+
For this reason, cast the `objectProvider` object to the updated interface.
8589

8690
- When sending objects, like commands or data, to the *debuggee-side* use the `IVisualizerObjectProvider2.Serialize` method
8791
to pass it to a stream, it will determine the best serialization format to use based on the runtime of the *debuggee* process.

docs/debugger/supported-code-changes-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Supported Code Changes (C# and Visual Basic) | Microsoft Docs"
33
description: Understand what code changes are supported when you are using the Edit and Continue feature while debugging a C# or Visual Basic project in Visual Studio.
44
ms.custom: SEO-VS-2020
5-
ms.date: "10/11/2018"
5+
ms.date: "9/03/2020"
66
ms.topic: "conceptual"
77
dev_langs:
88
- "CSharp"

docs/debugger/using-breakpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use breakpoints in the debugger | Microsoft Docs
33
description: Learn about breakpoints, one of the most important debugging techniques. The article covers breakpoint actions, tracepoints, conditions, and much more.
44
ms.custom: SEO-VS-2020
5-
ms.date: 06/30/2020
5+
ms.date: 12/21/2020
66
ms.topic: how-to
77
f1_keywords:
88
- vs.debug.breakpointswin

docs/debugger/walkthrough-debugging-a-parallel-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ This walkthrough shows how to use the **Parallel Tasks** and **Parallel Stacks**
248248

249249
1. To resume execution until the second breakpoint is hit, on the **Debug** menu, click **Continue**.
250250

251-
Previously, the **Status** column showed all tasks as Active, but now two of the tasks are Blocked. Tasks can be blocked for many different reasons. In the **Status** column, hover over a waiting task to learn why it is blocked. For example, in the following illustration, task 3 is waiting on task 4.
251+
Previously, the **Status** column showed all tasks as Active, but now two of the tasks are Blocked. Tasks can be blocked for [many different reasons](/dotnet/standard/parallel-programming/potential-pitfalls-in-data-and-task-parallelism). In the **Status** column, hover over a waiting task to learn why it is blocked. For example, in the following illustration, task 3 is waiting on task 4.
252252

253253
![Two waiting tasks in Tasks window](../debugger/media/pdb_walkthrough_7.png "PDB_Walkthrough_7")
254254

docs/debugger/walkthrough-writing-a-visualizer-in-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Follow the tasks below to create a visualizer.
3636
::: moniker range=">=vs-2019"
3737
Choose **File** > **New** > **Project**. In the language drop-down, choose **C#**. In the search box, type **class library**, and then choose **Class Library (.NET Framework)**. Click **Next**. In the dialog box that appears, type the name `MyFirstVisualizer`, and then click **Create**.
3838

39-
For the visualizer project, make sure you select a .NET Framework class library and not .NET. Although the visualizer needs to be .NET Framework, the calling app can be .NET Core.
39+
For the visualizer project, make sure you select a .NET Framework class library and not .NET. Although the visualizer needs to be .NET Framework, the calling app can be .NET.
4040
::: moniker-end
4141
::: moniker range="vs-2017"
4242
From the top menu bar, choose **File** > **New** > **Project**. In the left pane of the **New project** dialog box, under **Visual C#**, choose **.NET Framework**, and then in the middle pane choose **Class Library (.NET Framework)**.
@@ -174,7 +174,7 @@ In the debugger-side code, you specify the type to visualize (the object source)
174174
Choose **File** > **New** > **Project**. In the language drop-down, choose **C#**. In the search box, type **console app**, and then choose either **Console App (.NET Framework)** or **Console Application** for .NET. Click **Next**. In the dialog box that appears, type the name `MyTestConsole`, and then click **Create**.
175175

176176
> [!NOTE]
177-
> If you want to easily test the visualizer using a test harness, create a .NET Framework console app. You can create a .NET console app instead, but the test harness described later is not yet supported for .NET, so you will need to install the visualizer to test it. For a .NET console app, first create the console app here, add the required DLL and project references, and then follow steps described in [Add a debuggee-side data object](#add-a-debuggee-side-data-object).
177+
> If you want to easily test the visualizer using a test harness, create a .NET Framework console app. You can create a .NET console app instead, but the test harness described later is not yet supported for .NET, so you will need to install the visualizer to test it. For a .NET console app, first create the console app here, add the required DLL and project references, and then follow steps described in [Add a debuggee-side data object](#add-a-debuggee-side-data-object). For ASP.NET Core scenarios, see [Special debugger side considerations for .NET 5.0+](../debugger/create-custom-visualizers-of-data.md#special-debugger-side-considerations-for-net-50).
178178
::: moniker-end
179179
::: moniker range="vs-2017"
180180
From the top menu bar, choose **File** > **New** > **Project**. In the left pane of the **New project** dialog box, under **Visual C#**, choose **Windows Desktop**, and then in the middle pane choose **Console App (.NET Framework)**.

docs/extensibility/internals/custom-colorable-items.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ You can override the list of types for colorizing, such as keywords and comments
2424
Because the IDE handles user overrides of colorable items in the **Fonts and Colors** dialog box, you need only supply each custom colorable item with a name. This name is what appears in the **Display items** list. The colorable items appear in alphabetical order. To group your language service's custom colorable items, you can begin each name with your language name, for example **NewLanguage - Comment** and **NewLanguage - Keyword**.
2525

2626
> [!CAUTION]
27-
> You should include the language name in the colorable item name to avoid collisions with existing colorable item names. If you change the name of one of your colorable items during development, you must reset the cache that was created the first time your colorable items were accessed. You can reset the experimental cache with the **CreateExpInstance** tool, which is installed with the Visual Studio SDK, typically in the directory:
27+
> You should include the language name in the colorable item name to avoid collisions with existing colorable item names. If you change the name of one of your colorable items during development, you must reset the cache that was created the first time your colorable items were accessed. You can reset the experimental cache with the **CreateExpInstance** tool, which is installed with the Visual Studio SDK, typically in the following directory under the Visual Studio installation folder:
2828
>
29-
> *C:\Program Files (x86)\Microsoft Visual Studio 14.0\VSSDK\VisualStudioIntegration\Tools\Bin*
29+
> *VSSDK\VisualStudioIntegration\Tools\Bin*
3030
>
3131
> To reset the cache, enter **CreateExpInstance /Reset**. For more information about **CreateExpInstance**, see [CreateExpInstance utility](../../extensibility/internals/createexpinstance-utility.md).
3232

docs/ide/find-in-files.md

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Find in Files
33
description: Learn about the Find in Files feature and how to use it to search a specific set of files.
44
ms.custom: SEO-VS-2020
5-
ms.date: 07/23/2021
5+
ms.date: 08/02/2021
66
ms.topic: conceptual
77
f1_keywords:
88
- vs.findinfiles
@@ -69,9 +69,9 @@ To search for a new text string or expression, specify it in the Search box. To
6969

7070
You can select or clear the following option(s):
7171

72-
- **Match case** - When selected, a **Find Results** search will be case-sensitive.
73-
- **Match whole word** - When selected, the **Find Results** windows will only return whole word matches.
74-
- **Use regular expressions** - When selected, you can use special notations to define patterns of text to match in the Search box (or in the **Replace** text box). For a list of these notations, see [Using regular expressions in Visual Studio](../ide/using-regular-expressions-in-visual-studio.md).
72+
- **Match case** - Use this option to make sure that your search is case-sensitive.
73+
- **Match whole word** - Use this option to make sure that your search returns only whole word matches.
74+
- **Use regular expressions** - Use this option to use special notations that define patterns of text to match in the Search box (or in the **Replace** text box). For a list of these notations, see [Using regular expressions in Visual Studio](../ide/using-regular-expressions-in-visual-studio.md).
7575

7676
> [!Important]
7777
> The **Expression Builder** button appears next to the Search box only if you've selected the **Use regular expressions** checkbox.
@@ -82,13 +82,20 @@ You can select or clear the following option(s):
8282

8383
The option you choose from the **Look in** drop-down list determines whether **Find in Files** searches the entire workspace, the entire solution, the current project, the current directory, all open documents, or the current document.
8484

85-
You can also use the adjacent **Browse (...)** button to locate where you want search.
85+
You can also use the adjacent **Browse (...)** button to locate where you want search. Even better, if you've already specified a directory, this button will append the new directory instead of replacing is. For instance, if your "Look in" value was ".\Code", you could click the **Browse (...)** button and navigate to a folder named "Shared Code". The **Browse (...)** box would now show ".\Code;.\Shared Code" and when the Find command is executed, it will search both of those folders.
8686

87-
And, you can toggle either the **Include external items** checkbox or the **Include miscellaneous files** checkbox, or both.
87+
To refine your search, you can select or clear the following option(s):
88+
89+
- **Include external items** - Use this option to include external items, such as files like "windows.h" that you might reference but aren't part of a solution.
90+
- **Include miscellaneous files** - Use this option to include miscellaneous files, such as files that you've opened but aren't part of a solution.
8891

8992
## File types
9093

91-
The **File types** option indicates the types of files to search through in the **Look in** directories. Select any item in the list to enter a preconfigured search string that will find files of those particular types. You can also can exclude files. To do so, prefix any path or file type with the "!" character to exclude it from the search.
94+
The **File types** option indicates the types of files to search through in the **Look in** directories. Select any item in the list to enter a preconfigured search string that will find files of those particular types.
95+
96+
:::image type="content" source="media/find-file-types.png" alt-text="Screenshot of the File Types section of the Find In Files dialog box.":::
97+
98+
You can search for multiple file types by separating them with a semicolon (`;`). You can also can exclude folders and files by prefixing any path or file type with an exclamation mark (`!`).
9299

93100
### Append results
94101

@@ -127,9 +134,7 @@ Specifies that subfolders of the **Look in** folder will be searched.
127134

128135
## Find options
129136

130-
You can expand or collapse the **Find options** section. The following options can be selected or cleared:
131-
132-
You can select or clear the following option(s):
137+
You can expand or collapse the **Find options** section. You can select or clear the following option(s):
133138

134139
**Match case**
135140

@@ -178,6 +183,14 @@ Displays a list of files containing search matches rather than displaying the se
178183

179184
::: moniker-end
180185

186+
## Multiple searches
187+
188+
You can keep the results from one search while you're performing other searches. This makes it easy to compare results and see them side-by-side.
189+
190+
:::image type="content" source="media/find-files-search-results.png" alt-text="Screenshot of the Search Results window with three search results as tabs showing.":::
191+
192+
To keep several search results, select the **Keep Results** button after each search. Then, when you search for something else, the results are shown in a new tab. You can keep the results of up to five searches. If you've already got five search results showing, the next search will reuse the oldest search result tab.
193+
181194
## See also
182195

183196
- [Replace in files](../ide/replace-in-files.md)

docs/ide/media/find-file-types.png

66.2 KB
Loading
95.9 KB
Loading

docs/install/advanced-build-tools-container.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ms.custom: SEO-VS-2020
55
ms.date: 03/25/2020
66
ms.topic: conceptual
77
ms.assetid: e03835db-a616-41e6-b339-92b41d0cfc70
8-
author: j-martens
9-
ms.author: jmartens
8+
author: anandmeg
9+
ms.author: meghaanand
1010
manager: jmartens
1111
ms.workload:
1212
- multiple

docs/install/applying-administrator-updates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.date: 04/16/2021
66
ms.custom:
77
ms.topic: overview
88
ms.assetid: 9a3fdb28-db3d-4970-bc17-7417a985f0fb
9-
author: j-martens
10-
ms.author: jmartens
9+
author: anandmeg
10+
ms.author: meghaanand
1111
manager: jmartens
1212
ms.workload:
1313
- multiple

docs/install/automated-installation-with-response-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ helpviewer_keywords:
99
- automate
1010
- installation
1111
- command-line
12-
author: j-martens
13-
ms.author: jmartens
12+
author: anandmeg
13+
ms.author: meghaanand
1414
manager: jmartens
1515
ms.workload:
1616
- multiple

docs/install/automatically-apply-product-keys-when-deploying-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ms.date: 09/24/2019
55
ms.custom: seodec18
66
ms.topic: conceptual
77
ms.assetid: d79260be-6234-4fd3-89b5-a9756b4a93c1
8-
author: j-martens
9-
ms.author: jmartens
8+
author: anandmeg
9+
ms.author: meghaanand
1010
manager: jmartens
1111
ms.workload:
1212
- multiple

docs/install/build-tools-container-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ms.date: 02/18/2020
55
ms.custom: seodec18
66
ms.topic: conceptual
77
ms.assetid: 140083f1-05bc-4014-949e-fb5802397c7a
8-
author: j-martens
9-
ms.author: jmartens
8+
author: anandmeg
9+
ms.author: meghaanand
1010
manager: jmartens
1111
ms.workload:
1212
- multiple

docs/install/build-tools-container.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.date: 03/25/2020
66
ms.custom: seodec18
77
ms.topic: conceptual
88
ms.assetid: d5c038e2-e70d-411e-950c-8a54917b578a
9-
author: j-martens
10-
ms.author: jmartens
9+
author: anandmeg
10+
ms.author: meghaanand
1111
manager: jmartens
1212
ms.workload:
1313
- multiple

docs/install/change-installation-locations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ helpviewer_keywords:
99
- select an installation location for Visual Studio files
1010
- move installation files to different drives
1111
- use the D drive
12-
author: j-martens
13-
ms.author: jmartens
12+
author: anandmeg
13+
ms.author: meghaanand
1414
manager: jmartens
1515
ms.workload:
1616
- multiple

docs/install/changed-payloads.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: When package payloads change after a release
33
description: When creating a layout, learn how to determine if package payloads changed after a release has already shipped.
44
ms.date: 05/22/2019
55
ms.topic: how-to
6-
author: j-martens
7-
ms.author: jmartens
6+
author: anandmeg
7+
ms.author: meghaanand
88
manager: jmartens
99
ms.workload:
1010
- multiple

docs/install/command-line-parameter-examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ms.date: 03/30/2019
55
ms.custom: seodec18
66
ms.topic: conceptual
77
ms.assetid: 837F31AA-F121-46e9-9996-F8BCE768E579
8-
author: j-martens
9-
ms.author: jmartens
8+
author: anandmeg
9+
ms.author: meghaanand
1010
manager: jmartens
1111
ms.workload:
1212
- multiple

docs/install/controlling-updates-to-visual-studio-deployments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ helpviewer_keywords:
88
- '{{PLACEHOLDER}}'
99
- '{{PLACEHOLDER}}'
1010
ms.assetid: 35C7AB05-07D5-4B38-BCAC-AB88444E7368
11-
author: j-martens
12-
ms.author: jmartens
11+
author: anandmeg
12+
ms.author: meghaanand
1313
manager: jmartens
1414
ms.workload:
1515
- multiple

docs/install/create-a-network-installation-of-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ helpviewer_keywords:
88
- '{{PLACEHOLDER}}'
99
- '{{PLACEHOLDER}}'
1010
ms.assetid: 4CABFD20-962E-482C-8A76-E4012052F701
11-
author: j-martens
12-
ms.author: jmartens
11+
author: anandmeg
12+
ms.author: meghaanand
1313
manager: jmartens
1414
ms.workload:
1515
- multiple

docs/install/create-an-offline-installation-of-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ f1_keywords:
99
- offline install [Visual Studio]
1010
- layout [Visual Studio]
1111
ms.assetid: f8625d5e-f6ea-4db0-83c0-619b77fab3cf
12-
author: j-martens
13-
ms.author: jmartens
12+
author: anandmeg
13+
ms.author: meghaanand
1414
manager: jmartens
1515
ms.workload:
1616
- multiple

docs/install/disable-or-move-the-package-cache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ helpviewer_keywords:
1111
- '{{PLACEHOLDER}}'
1212
- '{{PLACEHOLDER}}'
1313
ms.assetid: 2429993A-3F0E-41C5-9562-FEA6AE994440
14-
author: j-martens
15-
ms.author: jmartens
14+
author: anandmeg
15+
ms.author: meghaanand
1616
manager: jmartens
1717
ms.workload:
1818
- multiple

docs/install/enabling-administrator-updates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.date: 04/06/2021
66
ms.custom:
77
ms.topic: overview
88
ms.assetid: 546fbad6-f12b-49cf-bccc-f2e63e051a18
9-
author: j-martens
10-
ms.author: jmartens
9+
author: anandmeg
10+
ms.author: meghaanand
1111
manager: jmartens
1212
ms.workload:
1313
- multiple

docs/install/import-export-installation-configurations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ helpviewer_keywords:
99
- export installation configuration
1010
- install Visual Studio
1111
- Visual Studio installer
12-
author: j-martens
13-
ms.author: jmartens
12+
author: anandmeg
13+
ms.author: meghaanand
1414
manager: jmartens
1515
ms.workload:
1616
- multiple

docs/install/includes/install-error-codes-md.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
author: j-martens
3-
ms.author: jmartens
2+
author: anandmeg
3+
ms.author: meghaanand
44
manager: jmartens
55
ms.date: 05/28/2021
66
ms.prod: visual-studio-windows

docs/install/includes/install_get_support_md.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
author: j-martens
3-
ms.author: jmartens
2+
author: anandmeg
3+
ms.author: meghaanand
44
manager: jmartens
55
ms.date: 03/23/2020
66
ms.prod: visual-studio-windows

docs/install/includes/vs-2017/workload-component-id-vs-build-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Visual Studio Build Tools 2017 workload and component IDs
33
titleSuffix: ""
44
description: "Use Visual Studio workload and component IDs to build classic Windows-based applications"
5-
author: j-martens
6-
ms.author: jmartens
5+
author: anandmeg
6+
ms.author: meghaanand
77
manager: jmartens
88
ms.date: 2/12/2019
99
ms.prod: visual-studio-windows

docs/install/includes/vs-2017/workload-component-id-vs-community.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Visual Studio Community 2017 workload and component IDs
33
titleSuffix: ""
44
description: "Use workload and component IDs to install Visual Studio by using the command line or to specify as a dependency in a VSIX manifest"
55
keywords:
6-
author: j-martens
7-
ms.author: jmartens
6+
author: anandmeg
7+
ms.author: meghaanand
88
manager: jmartens
99
ms.date: 2/12/2019
1010
ms.prod: visual-studio-windows

0 commit comments

Comments
 (0)