Skip to content

Commit b889384

Browse files
committed
Merge branch 'mikejo-meta' of https://github.com/mikejo5000/visualstudio-docs-pr into mikejo-meta
2 parents e23c75f + 440521e commit b889384

File tree

50 files changed

+94
-176
lines changed

Some content is hidden

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

50 files changed

+94
-176
lines changed

docs/cross-platform/develop-apps-for-the-universal-windows-platform-uwp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Develop apps for the Universal Windows Platform (UWP)
33
ms.date: "10/24/2017"
44
ms.technology: vs-ide-general
5-
ms.topic: "conceptual"
5+
ms.topic: conceptual
66
ms.assetid: eac59cb6-f12e-4a77-9953-6d62b164a643
77
author: gewarren
88
ms.author: gewarren

docs/debugger/mfc-debugging-techniques.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Non-object blocks include arrays and structures allocated with `new`. In this ca
224224
In an MFC program, you can use [CMemoryState::DumpAllObjectsSince](/cpp/mfc/reference/cmemorystate-structure#dumpallobjectssince) to dump a description of all objects on the heap that have not been deallocated. `DumpAllObjectsSince` dumps all objects allocated since the last [CMemoryState::Checkpoint](/cpp/mfc/reference/cmemorystate-structure#checkpoint). If no `Checkpoint` call has taken place, `DumpAllObjectsSince` dumps all objects and nonobjects currently in memory.
225225

226226
> [!NOTE]
227-
> Before you can use MFC object dumping, you must [enable diagnostic tracing](#BKMK_Enabling_Memory_Diagnostics).
227+
> Before you can use MFC object dumping, you must [enable diagnostic tracing](#BKMK_Enabling_memory_diagnostics).
228228
229229
> [!NOTE]
230230
> MFC automatically dumps all leaked objects when your program exits, so you do not need to create code to dump objects at that point.

docs/extensibility/ux-guidelines/visual-language-dictionary-for-visual-studio.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
---
2-
title: "Visual Language Dictionary for Visual Studio | Microsoft Docs"
2+
title: Visual language reference
33
ms.date: "08/04/2017"
44
ms.reviewer: "Jamie.Young"
5-
ms.topic: "conceptual"
5+
ms.topic: conceptual
66
ms.assetid: d20a30c0-0dcc-4e2c-a809-31c8ea28c7df
7-
author: "gregvanl"
8-
ms.author: "gregvanl"
7+
ms.author: brgeorge
98
manager: jillfra
10-
ms.workload:
11-
- "v-brickg"
129
---
13-
# Visual Language Dictionary for Visual Studio
10+
# Visual language dictionary
11+
1412
Visual Studio uses a common visual language to illustrate the concepts that are the building blocks of its iconography and other imagery. When designing new icons, use this dictionary to identify the concepts that you want to convey in your own image.
1513

1614
## General guidelines

docs/extensibility/walkthough-create-extension-pack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ An Extension Pack is a set of extensions that can be installed together. Extensi
1717

1818
## Prerequisites
1919

20-
Starting in Visual Studio 2015, you do not install the Visual Studio SDK from the download center. It is included as an optional feature in Visual Studio setup. You can also install the VS SDK later on. For more information, see [Installing the Visual Studio SDK](../extensibility/installing-the-visual-studio-sdk.md).
20+
Starting in Visual Studio 2015, the Visual Studio SDK is included as an optional feature in Visual Studio setup. You can also install the VS SDK later on. For more information, see [Installing the Visual Studio SDK](../extensibility/installing-the-visual-studio-sdk.md).
2121

2222
The Extension Pack feature is available starting with Visual Studio 15.8 Preview 2.
2323

docs/ide/reference/convert-anonymous-type-to-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Convert Anonymous Type to Class
33
ms.date: 02/13/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/convert-anonymous-type-to-tuple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Convert Anonymous Type to Tuple
33
ms.date: 02/13/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/convert-foreach-linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Convert foreach loop to LINQ
33
ms.date: 02/20/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/convert-local-function-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Convert local function to method
33
ms.date: 02/19/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp
@@ -32,7 +32,7 @@ This refactoring applies to:
3232

3333
2. Press **Ctrl**+**.** to trigger the **Quick Actions and Refactorings** menu.
3434

35-
![Convert local function to method codefix](media/convert-local-function-to-method-codefix.png)
35+
![Convert local function to method code fix](media/convert-local-function-to-method-codefix.png)
3636

3737
2. Press **Enter** to accept the refactoring.
3838

docs/ide/reference/generate-deconstructor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Generate a deconstructor quick action
33
ms.date: 02/19/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp
@@ -36,7 +36,7 @@ This code generation applies to:
3636
- Right-click and select the **Quick Actions and Refactorings** menu.
3737
- Click the ![screwdriver](media/screwdriver.png) icon that appears in the left margin if the text cursor is already on the empty line in the class.
3838

39-
![Generate deconstructor codefix](media/deconstruct-codefix.png)
39+
![Generate deconstructor code fix](media/deconstruct-codefix.png)
4040

4141
3. Select **Generate method 'MyInternalClass.Deconstruct'** to generate the deconstructor.
4242

docs/ide/reference/generate-usings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Generate usings
33
ms.date: 02/19/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/invert-conditional-logical.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Invert conditional expressions and logical operations
33
ms.date: 02/19/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/invert-if-statement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Invert if statement
33
ms.date: 02/19/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp
@@ -32,7 +32,7 @@ This refactoring applies to:
3232

3333
2. Press **Ctrl**+**.** to trigger the **Quick Actions and Refactorings** menu.
3434

35-
![Invert if else codefix](media/invert-if-codefix.png)
35+
![Invert if else code fix](media/invert-if-codefix.png)
3636

3737
3. Select **Invert if**.
3838

docs/ide/reference/pull-members-up.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Pull Members Up
33
ms.date: 02/13/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/unused-values-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Unused values and parameters
33
ms.date: 02/15/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/use-block-body-lambda.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use lambda expression or block body
33
ms.date: 02/14/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/reference/wrap-align-indent-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Wrap, Indent, Align parameters
33
ms.date: 02/13/2019
44
ms.topic: reference
55
author: kendrahavens
6-
ms.author: kendrahavens
6+
ms.author: kehavens
77
manager: jillfra
88
dev_langs:
99
- CSharp

docs/ide/walkthrough-creating-a-multiple-computer-build-environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ This table describes the supported arguments for *vcvarsall.bat*:
258258
|x86_amd64|x64 Cross|x86, x64|x64|
259259
|amd64|x64 Native|x64|x64|
260260

261-
If *vcvarsall.bat* runs successfully—that is, no error message is displayed—you can skip the next step and continue at the [Install MSBuild assemblies to the Global Assembly Cache (GAC) on the build computer](../ide/walkthrough-creating-a-multiple-computer-build-environment.md#InstallingMSBuildToGAC) section of this document.
261+
If *vcvarsall.bat* runs successfully—that is, no error message is displayed—you can skip the next step and continue at the [Install MSBuild assemblies to the Global Assembly Cache (GAC) on the build computer](#install-msbuild-to-gac) section of this document.
262262

263263
### Manually set environment variables
264264

@@ -280,7 +280,7 @@ If *vcvarsall.bat* runs successfully—that is, no error message is displayed—
280280

281281
- %windir%\Microsoft.NET\Framework64\v4.0.30319
282282

283-
## Install MSBuild assemblies to the Global Assembly Cache (GAC) on the build computer
283+
## <a name="install-msbuild-to-gac" /> Install MSBuild assemblies to the Global Assembly Cache (GAC) on the build computer
284284

285285
MSBuild requires some additional assemblies to be installed to the GAC on the build computer.
286286

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Use Visual Studio workload and component IDs to build classic Wind
55
author: TerryGLee
66
ms.author: tglee
77
manager: jillfra
8-
ms.date: 02/29/2019
8+
ms.date: 03/01/2019
99
ms.prod: visual-studio-windows
1010
ms.technology: vs-installation
1111
ms.topic: include

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/includes/vs-2019/workload-component-id-vs-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/includes/vs-2019/workload-component-id-vs-professional.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/includes/vs-2019/workload-component-id-vs-team-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/includes/vs-2019/workload-component-id-vs-test-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/includes/vs-2019/workload-component-id-vs-test-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.prod: visual-studio-windows
1111
ms.technology: vs-installation
1212
ms.topic: include

docs/install/install-visual-studio-versions-side-by-side.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Install Visual Studio versions side-by-side"
33
ms.date: 03/05/2019
44
ms.prod: "visual-studio-windows"
5-
ms.technology: "vs-isntallation"
5+
ms.technology: "vs-installation"
66
ms.topic: conceptual
77
helpviewer_keywords:
88
- "side-by-side installations [Visual Studio]"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-professional.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-team-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-test-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-test-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
author: TerryGLee
77
ms.author: tglee
88
manager: jillfra
9-
ms.date: 02/29/2019
9+
ms.date: 03/01/2019
1010
ms.topic: reference
1111
helpviewer_keywords:
1212
- "workload ID, Visual Studio"

docs/install/workload-component-id-vs-test-professional.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22
title: Visual Studio Test Professional workload and component IDs
33
titleSuffix: ""
44
description: "Use Visual Studio workload and component IDs to provide integrated testing tools for generalist testers"
5-
keywords:
65
author: TerryGLee
76
ms.author: tglee
87
manager: jillfra
9-
ms.date: 02/29/2019
8+
ms.date: 03/01/2019
109
ms.topic: reference
1110
helpviewer_keywords:
1211
- "workload ID, Visual Studio"
1312
- "component ID, Visual Studio"
1413
- "install Visual Studio, administrator guide"
15-
ms.service:
1614
ms.assetid: 70c03438-8434-4921-ada0-c172519af431
1715
ms.prod: visual-studio-windows
1816
ms.technology: vs-installation

docs/python/installing-python-support-in-visual-studio.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ ms.workload:
1111
- python
1212
- data-science
1313
---
14-
1514
# How to install Python support in Visual Studio on Windows
1615

1716
To install Python support for Visual Studio (also known as Python Tools for Visual Studio or PTVS), follow the instructions in the section that matches your version of Visual Studio:
@@ -28,7 +27,7 @@ To quickly test Python support after following the installation steps, open the
2827
> [!Note]
2928
> Python support is not presently available in Visual Studio for Mac, but is available on Mac and Linux through Visual Studio Code. See [questions and answers](overview-of-python-tools-for-visual-studio.md#questions-and-answers).
3029
31-
<a name="visual-studio-2017"></a>
30+
<a name="visual-studio-2017-and-2019"></a>
3231
## Visual Studio 2019 and Visual Studio 2017
3332

3433
1. Download and run the latest Visual Studio installer. If you have Visual Studio installed already, run the Visual Studio Installer, select the **Modify** option (see [Modify Visual Studio](../install/modify-visual-studio.md)) and go to step 2.

docs/python/managing-python-environments-in-visual-studio.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ms.workload:
1010
- python
1111
- data-science
1212
---
13-
1413
# How to create and manage Python environments in Visual Studio
1514

1615
A Python *environment* is a context in which you run Python code and includes global, virtual, and conda environments. An environment consists of an interpreter, a library (typically the Python Standard Library), and a set of installed packages. These components together determine which language constructs and syntax are valid, what operating-system functionality you can access, and which packages you can use.
@@ -101,7 +100,7 @@ Visual Studio also provides a command to generate a *requirements.txt* file from
101100

102101
#### Conda environments
103102

104-
A conda environment is one created using the `conda` tool, or with integrated conda management in Visual Studio 2017 version 15.7 and higher. (Requires Anaconda or Miniconda; Anaconda is available through the Visual Studio installer, see [Installation - Visual Studio 2017](installing-python-support-in-visual-studio.md#visual-studio-2017).)
103+
A conda environment is one created using the `conda` tool, or with integrated conda management in Visual Studio 2017 version 15.7 and higher. (Requires Anaconda or Miniconda; Anaconda is available through the Visual Studio installer, see [Installation - Visual Studio 2017](installing-python-support-in-visual-studio.md#visual-studio-2017-and-2019).)
105104

106105
1. Select **+ Create conda environment** in the **Python Environments** window, which opens a **Create new conda environment** tab:
107106

0 commit comments

Comments
 (0)