Skip to content

Commit 257683a

Browse files
committed
review comments; add matching dark images for experiment
1 parent d511ad7 commit 257683a

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed
28.8 KB
Loading
Loading

docs/ide/quickstart-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The Visual Studio editor makes it easy to inspect the definition of a type, meth
122122

123123
![IntelliSense word completion in Visual Studio](media/quickstart-intellisense-completion-list.png)
124124

125-
1. To insert the rest of the word `query` by using IntelliSense's word comletion functionality, press **Tab**.
125+
1. To insert the rest of the word `query` by using IntelliSense's word completion functionality, press **Tab**.
126126

127127
1. Finish off the code block to look like the following code. You can even practice using code snippets again by entering `cw` and then pressing **Tab** twice to generate the `Console.WriteLine` code.
128128

docs/ide/quickstart-ide-orientation.experimental.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,21 @@ If you close the **Start Page** and want to see it again, you can reopen it from
3232

3333
To continue exploring Visual Studio's features, let's create a new project.
3434

35-
1. On the **Start Page**, in the search box under **New project**, enter **console** to filter the list of project types to those that contain "console" in their name. Visual Studio provides various kinds of project templates that help you get started coding quickly. Choose a C# **Console App (.NET Framework)** project template. (Alternatively, if you're a Visual Basic, C++, Javascript, or other language developer, feel free to create a project in one of those languages. The UI we'll be looking at is similar for all programming languages.)
35+
1. On the **Start Page**, in the search box under **New project**, type in **console** to filter the list of project types to those that contain "console" in their name.
3636

37-
1. In the **New Project** dialog box, accept the default project name and choose **OK**.
37+
![Search project templates on Visual Studio Start Page](media/start-page-search-templates-dark.png)
38+
39+
Visual Studio provides various kinds of project templates that help you get started coding quickly. Choose a C# **Console App (.NET Framework)** project template. (Alternatively, if you're a Visual Basic, C++, Javascript, or other language developer, feel free to create a project in one of those languages. The UI we'll be looking at is similar for all programming languages.)
40+
41+
1. In the **New Project** dialog box that appears, accept the default project name and choose **OK**.
3842

3943
The project is created and a file named *Program.cs* opens in the **Editor** window. The **Editor** shows the contents of files, and is where you'll do most of your coding work in Visual Studio.
4044

4145
![Editor in Visual Studio](media/editor-dark.png)
4246

4347
## Solution Explorer
4448

45-
**Solution Explorer**, which is probably on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
49+
**Solution Explorer**, which is typically on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
4650

4751
![Solution Explorer in Visual Studio](media/solution-explorer-console-app-dark.png)
4852

@@ -70,9 +74,9 @@ Let's build the project to see some build output. From the **Build** menu, choos
7074

7175
## Quick Launch
7276

73-
The **Quick Launch** box is a quick and easy way to do pretty much anything in Visual Studio. You can enter some text related to what you want to do, and it'll show you a list of options that pertain to the text. For example, say we want to increase the build output's verbosity to display additional details about what exactly build is doing:
77+
The **Quick Launch** box is a quick and easy way to do pretty much anything in Visual Studio. You can enter some text related to what you want to do, and it'll show you a list of options that pertain to the text. For example, imagine you want to increase the build output's verbosity to display additional details about what exactly build is doing. Here's how you might do that:
7478

75-
1. Enter **verbosity** into the **Quick Launch** box. From the displayed results, choose **Projects and Solutions --> Build and Run** under the **Options** category.
79+
1. Type **verbosity** into the **Quick Launch** box. From the displayed results, choose **Projects and Solutions --> Build and Run** under the **Options** category.
7680

7781
![Quick launch box in Visual Studio](media/quick-launch-verbosity-dark.png)
7882

@@ -84,6 +88,8 @@ The **Quick Launch** box is a quick and easy way to do pretty much anything in V
8488

8589
This time the **Output** window shows more verbose logging from the build process, including which files were copied where.
8690

91+
![Verbose build output in Visual Studio](media/build-output-verbose-dark.png)
92+
8793
## Send Feedback menu
8894

8995
Should you encounter any problems while you're using Visual Studio, or if you have suggestions for how to improve the product, you can use the **Send Feedback** menu at the top of the Visual Studio window, next to the **Quick Launch** box.
@@ -92,11 +98,11 @@ Should you encounter any problems while you're using Visual Studio, or if you ha
9298

9399
## Next steps
94100

95-
We've looked at just a few of the features of the Visual Studio IDE to get acquainted with the user interface. To explore further:
101+
We've looked at just a few of the features of Visual Studio to get acquainted with the user interface. To explore further:
96102

97-
- Take a more in-depth tour of the IDE, and even dabble in debugging, in [Overview of the Visual Studio IDE](../ide/visual-studio-ide.md)
103+
- Take a more in-depth tour of Visual Studio, and even dabble in debugging, in [Overview of the Visual Studio IDE](../ide/visual-studio-ide.md)
98104

99-
- Browse the **General User Interface Elements** section of the VS documentation, which goes into more depth about windows such as the [Error List](../ide/reference/error-list-window.md), [Output window](../ide/reference/output-window.md), [Properties window](../ide/reference/properties-window.md), and [Options dialog box](../ide/reference/options-dialog-box-visual-studio.md)
105+
- Browse the **General user interface elements** section of the VS documentation, which goes into more depth about windows such as the [Error List](../ide/reference/error-list-window.md), [Output window](../ide/reference/output-window.md), [Properties window](../ide/reference/properties-window.md), and [Options dialog box](../ide/reference/options-dialog-box-visual-studio.md)
100106

101107
## See also
102108

docs/ide/quickstart-ide-orientation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To continue exploring Visual Studio's features, let's create a new project.
4646

4747
## Solution Explorer
4848

49-
**Solution Explorer**, which is probably on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
49+
**Solution Explorer**, which is typically on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
5050

5151
![Solution Explorer in Visual Studio](media/quickstart-IDE-solution-explorer.png)
5252

0 commit comments

Comments
 (0)