Skip to content

Commit 65104f8

Browse files
Merge pull request #10643 from TerryGLee/tglee-fresh26
(freshness) apply minor edits
2 parents 9b03213 + db6914d commit 65104f8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docs/get-started/tutorial-projects-solutions.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Introduction to projects and solutions
33
description: Learn about the difference between projects and solutions and how to use them in Visual Studio.
4-
ms.date: 11/12/2021
4+
ms.date: 11/22/2022
55
ms.technology: vs-ide-general
66
ms.custom: [vs-acquisition, get-started, SEO-VS-2020]
77
ms.topic: tutorial
@@ -42,7 +42,7 @@ In Visual Studio, a solution isn't an "answer". A solution is simply a container
4242

4343
### Create a solution
4444

45-
Start your exploration by creating an empty solution. After you get to know Visual Studio, you probably won't create empty solutions very often. When you create a new project, Visual Studio automatically creates a solution for the project unless a solution is already open.
45+
Start your exploration by creating an empty solution. After you get to know Visual Studio, you probably won't create empty solutions often. When you create a new project, Visual Studio automatically creates a solution for the project unless a solution is already open.
4646

4747
::: moniker range="vs-2019"
4848

@@ -124,7 +124,7 @@ Now add your first project to the solution. Start with an empty project, and add
124124
125125
1. On the **Configure your new project** page, name the project **QuickDate**, and then select **Create**.
126126

127-
The **QuickDate** project appears under the solution in **Solution Explorer**. Currently the project contains a single file called **App.config**.
127+
The **QuickDate** project appears under the solution in **Solution Explorer**. The project contains a References node and a single file named **App.config**.
128128

129129
::: moniker-end
130130

@@ -231,7 +231,7 @@ You'll use the new unit test project to test your method in the **QuickDate** pr
231231

232232
1. In **Solution Explorer**, right-click the **References** node of the **QuickTest** project, and select **Add Reference** from the context menu.
233233

234-
1. In the **Reference Manager** dialog box, under **Projects**, select the checkbox next to **QuickDate**, and then select **OK**.
234+
1. In the **Reference Manager** dialog box, select **Projects**. In the middle pane, select the checkbox next to **QuickDate**, and then select **OK**.
235235

236236
A reference to the **QuickDate** project appears under the **QuickTest** project in **Solution Explorer**.
237237

@@ -263,7 +263,7 @@ You'll use the new unit test project to test your method in the **QuickDate** pr
263263

264264
A red squiggle appears under some of the code. You can fix this error by making the test project a [friend assembly](/dotnet/standard/assembly/friend-assemblies) to the **QuickDate** project.
265265

266-
1. In the *Calendar.cs* file, add the following [using statement](/dotnet/csharp/language-reference/keywords/using-statement) and <xref:System.Runtime.CompilerServices.InternalsVisibleToAttribute> attribute to the top of the file to resolve the error in the test project.
266+
1. In the ***Calendar.cs*** file, add the following [using statement](/dotnet/csharp/language-reference/keywords/using-statement) and <xref:System.Runtime.CompilerServices.InternalsVisibleToAttribute> attribute to the top of the file to resolve the error in the test project.
267267

268268
```csharp
269269
using System.Runtime.CompilerServices;
@@ -302,7 +302,7 @@ To check that your unit test is working, choose **Test** > **Run All Tests** fro
302302
::: moniker-end
303303

304304
> [!TIP]
305-
> If **Test Explorer** doesn't open automatically, open it by choosing **Test** > **Test Explorer** from the menu bar.
305+
> You can also open **Test Explorer** by choosing **Test** > **Test Explorer** from the menu bar.
306306
307307
## Project properties
308308

@@ -331,7 +331,6 @@ The line in the *Calendar.cs* file that contains the <xref:System.Runtime.Compil
331331
## See also
332332

333333
- [Work with projects and solutions](../ide/creating-solutions-and-projects.md)
334+
- [Develop code in Visual Studio without projects or solutions](../ide/develop-code-in-visual-studio-without-projects-or-solutions.md)
334335
- [Manage project and solution properties](../ide/managing-project-and-solution-properties.md)
335336
- [Manage references in a project](../ide/managing-references-in-a-project.md)
336-
- [Develop code in Visual Studio without projects or solutions](../ide/develop-code-in-visual-studio-without-projects-or-solutions.md)
337-
- [Visual Studio IDE overview](../get-started/visual-studio-ide.md)

0 commit comments

Comments
 (0)