Skip to content

Repo sync for protected CLA branch #8401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Aug 29, 2022
Merged
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/ide/media/solution-explorer-tool-window.png
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/ide/solutions-and-projects-in-visual-studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: 'What are Visual Studio solutions & projects?'
description: Learn about Visual Studio projects and solutions, how to create new projects from a template, and how to view & manage projects in Solution Explorer.
ms.custom: "SEO-VS-2020, contperf-fy21q2"
ms.date: 08/25/2022
ms.date: 08/26/2022
ms.topic: conceptual
f1_keywords:
- vs.openproject
Expand Down Expand Up @@ -80,7 +80,7 @@ After you create a new project, you can use **[Solution Explorer](use-solution-e

![Screenshot of Solution Explorer with two projects in Visual Studio.](../ide/media/solution-explorer.png)

The toolbar across the top of **Solution Explorer** has buttons to switch from a solution view to a folder view, filter pending changes, show all files, collapse all nodes, view [properties](managing-project-and-solution-properties.md) pages, preview code in the [code editor](writing-code-in-the-code-and-text-editor.md), and more.
The [toolbar](use-solution-explorer.md#solution-explorer-toolbar) across the top of **Solution Explorer** has buttons to switch from a solution view to a folder view, filter pending changes, show all files, collapse all nodes, view [properties](managing-project-and-solution-properties.md) pages, preview code in the [code editor](writing-code-in-the-code-and-text-editor.md), and more.

Many menu commands are available from the [right-click context menu](use-solution-explorer.md#solution-node-context-menu-options) on various items in **Solution Explorer**. These commands include building a project, managing NuGet packages, adding a reference, renaming a file, and running tests, just to name a few. For more information, see [Learn about Solution Explorer](use-solution-explorer.md).

Expand Down
14 changes: 7 additions & 7 deletions docs/ide/use-solution-explorer.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Learn about Solution Explorer
description: Learn how you can use the Solution Explorer tool window in Visual Studio to create & manage your files, projects, and solutions.
ms.date: 08/24/2022
ms.date: 08/26/2022
ms.topic: conceptual
ms.custom: contperf-fy22q4
helpviewer_keywords:
Expand Down Expand Up @@ -29,13 +29,13 @@ By default, the Solution Explorer tool window appears as a pane in the upper-rig

Let's take a look at the Solution Explorer tool window and its UI (user interface). We'll start with an annotated screenshot of an open C# console solution that has two projects.

:::image type="content" source="media/solution-explorer-tool-window.png" alt-text="An annotated screenshot of the Solution Explorer tool window in Visual Studio." lightbox="media/solution-explorer-tool-window.png":::
:::image type="content" source="media/solution-explorer-tool-window-sml.png" alt-text="An annotated screenshot of the Solution Explorer tool window in Visual Studio." lightbox="media/solution-explorer-tool-window-lrg.png":::

The following table is a text-equivalent of the annotated screenshot, but with a few handy links you can use to learn more.

|UI element |Action |
|----------------------|---------|
|[**Menu** bar](#solution-explorer-menu-bar) | Control how your files appear |
|[**Toolbar**](#solution-explorer-toolbar) | Control how your files appear |
|**Search** bar | Search for specific files and file types |
|**Main** window | View and manage your files, projects, & solutions |
|[**Solution** node](#solution-node-context-menu-options) | Manage your solution(s) |
Expand All @@ -44,13 +44,13 @@ The following table is a text-equivalent of the annotated screenshot, but with a
|**Program** node | View, edit, and manage your program or application (app) |
|[**Git Changes** tab](../version-control/git-with-visual-studio.md) | Use Git & GitHub within Visual Studio to collaborate on projects with your team |

## Solution Explorer menu bar
## Solution Explorer toolbar

To continue, let's take a closer look at the menu bar in Solution Explorer.
To continue, let's take a closer look at the toolbar in Solution Explorer.

:::image type="content" source="media/solution-explorer-menu-bar.png" alt-text="Screenshot of the Solution Explorer menu bar in Visual Studio." lightbox="media/solution-explorer-menu-bar.png":::
:::image type="content" source="media/solution-explorer-toolbar.png" alt-text="Screenshot of the Solution Explorer toolbar in Visual Studio.":::

The menu bar contains the following UI elements, from left to right:
The toolbar contains the following UI elements, from left to right:

|UI element |Action |
|---------|---------|
Expand Down
3 changes: 1 addition & 2 deletions docs/python/refactoring-python-code.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Refactor Python code
description: Visual Studio makes it easy to refactor Python code by renaming identifiers, extracting methods, adding imports, and removing unused imports.
ms.date: 02/06/2022
ms.date: 08/26/2022
ms.topic: how-to
author: rjmolyneaux
ms.author: rmolyneaux
Expand All @@ -19,7 +19,6 @@ ms.workload:
Visual Studio provides several commands for automatically transforming and cleaning up your Python source code:

- [Rename](#rename) renames a selected class, method, or variable name.
- [Extract method](#extract-method) creates a new method from the selected code.
- [Add import](#add-import) provides a smart tag to add a missing import.
- [Remove unused imports](#remove-unused-imports) removes unused imports.

Expand Down