You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ide/create-new-project.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ In this article, we'll show you how to quickly create a new project in Visual St
22
22
23
23
## Open the New Project dialog
24
24
25
-
There are multiple ways to create a new project in Visual Studio 2017. On the Start page, you can type in the name of a project template in the **Search project templates** box or choose the **Create new project** link to open the **New Project** dialog box. Aside from the Start page, you can also choose**File** > **New** > **Project** on the menu bar or click the **New Project** button on the toolbar.
25
+
There are multiple ways to create a new project in Visual Studio 2017. On the Start page, you can type in the name of a project template in the **Search project templates** box or select the **Create new project** link to open the **New Project** dialog box. Aside from the Start page, you can also select**File** > **New** > **Project** on the menu bar or click the **New Project** button on the toolbar.
26
26
27
27

28
28
@@ -43,7 +43,7 @@ The following image shows the project templates available for Visual C# .NET Cor
43
43
44
44
## Configure your project
45
45
46
-
Enter a name for the new project in the **Name** box. You can save the project in the default location on your computer or click the **Browse** button to find another location. You can also choose a solution name or add the new project to a Git repository (by choosing**Add to Source Control**).
46
+
Enter a name for the new project in the **Name** box. You can save the project in the default location on your computer or click the **Browse** button to find another location. You can also select a solution name or add the new project to a Git repository (by selecting**Add to Source Control**).
47
47
48
48
Click **OK** to create the solution and project.
49
49
@@ -53,7 +53,7 @@ Click **OK** to create the solution and project.
53
53
54
54
## Open the Create a new project page
55
55
56
-
There are multiple ways to create a new project in Visual Studio 2019. When you first open Visual Studio, the start window appears, and from there, you can choose**Create a new project**.
56
+
There are multiple ways to create a new project in Visual Studio 2019. When you first open Visual Studio, the start window appears, and from there, you can select**Create a new project**.
57
57
58
58

59
59
@@ -72,15 +72,15 @@ If you're not selecting from the recently used templates, you can filter all ava
72
72
The tags that appear under each template correspond to the three dropdown filters (Language, Platform, and Project type).
73
73
74
74
> [!TIP]
75
-
> If you don't see the template you're looking for, you may be missing a workload for Visual Studio. To install additional workloads, for example, **Azure Development** or **Mobile Development with .NET**, click the **Install more tools and features** link to open Visual Studio Installer. From there, select the workloads you want to install, and then choose**Modify**. After that, additional project templates will be available to choose from.
75
+
> If you don't see the template you're looking for, you might be missing a workload for Visual Studio. To install additional workloads, for example, **Azure Development** or **Mobile Development with .NET**, click the **Install more tools and features** link to open Visual Studio Installer. From there, select the workloads you want to install, and then select**Modify**. After that, additional project templates will be available to choose from.
76
76
>
77
77
> 
78
78
79
79
Select a template and then click **Next**.
80
80
81
81
## Configure your project
82
82
83
-
The **Configure your new project** page has options to name your project (and solution), choose a disk location, and select a Framework version (if applicable to the template you chose).
83
+
The **Configure your new project** page has options to name your project (and solution), select a disk location, and select a Framework version (if applicable to the template you chose).
84
84
85
85

86
86
@@ -95,7 +95,7 @@ Click **Create** to create the new project.
95
95
96
96
## Add additional projects to a solution
97
97
98
-
If you want to add an additional project to a solution, right-click the solution node in **Solution Explorer** and choose**Add** > **New Project**.
98
+
If you want to add an additional project to a solution, right-click the solution node in **Solution Explorer** and select**Add** > **New Project**.
99
99
100
100
> [!TIP]
101
101
> For an example of a project and solution created from scratch, complete with step-by-step instructions and sample code, see [Introduction to projects and solutions](../get-started/tutorial-projects-solutions.md).
Copy file name to clipboardExpand all lines: docs/ide/creating-solutions-and-projects.md
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -42,26 +42,26 @@ For information about creating a new project from a template, see [Create a new
42
42
43
43
If you have a collection of code source files, you can easily add them to a project.
44
44
45
-
1. On the menu, choose**File** > **New** > **Project From Existing Code**.
45
+
1. On the menu, select**File** > **New** > **Project From Existing Code**.
46
46
47
-
1. In the **Create Project from Existing Code Files** wizard, choose the project type you want in the **What type of project would you like to create?** drop-down list box, and then choose the **Next** button.
47
+
1. In the **Create Project from Existing Code Files** wizard, select the project type you want in the **What type of project would you like to create?** drop-down list box, and then select the **Next** button.
48
48
49
-
1. In the wizard, browse to the location of the files and then enter a name for the new project in the **Name** box. When you are done, choose the **Finish** button.
49
+
1. In the wizard, browse to the location of the files and then enter a name for the new project in the **Name** box. When you are done, select the **Finish** button.
50
50
51
51
> [!NOTE]
52
52
> This option works best for a relatively simple collection of files. Currently, only C++, Apache Cordova, Visual Basic, and C# project types are supported.
53
53
54
54
## Add files to a solution
55
55
56
-
If you have a file that applies to multiple projects, such as a readme file for the solution, or other files that logically belong at the solution level rather than under a specific project, then you can add them to the solution itself. To add an item to a solution, on the context (right-click) menu of the solution node in **Solution Explorer**, choose**Add** > **New Item**, or **Add** > **Existing Item**.
56
+
If you have a file that applies to multiple projects, such as a readme file for the solution, or other files that logically belong at the solution level rather than under a specific project, then you can add them to the solution itself. To add an item to a solution, on the context (right-click) menu of the solution node in **Solution Explorer**, select**Add** > **New Item**, or **Add** > **Existing Item**.
57
57
58
58
## Create a .NET project that targets a specific version of the .NET Framework
59
59
60
60
When you create a .NET Framework project, you can specify a specific version of the .NET Framework that you want the project to use. (When you create a .NET Core project, you don't specify a framework version.)
61
61
62
62
::: moniker range="vs-2017"
63
63
64
-
To specify a .NET Framework version, choose the **Framework** drop-down menu in the **New Project** dialog box.
64
+
To specify a .NET Framework version, select the **Framework** drop-down menu in the **New Project** dialog box.
65
65
66
66

67
67
@@ -72,7 +72,7 @@ To specify a .NET Framework version, choose the **Framework** drop-down menu in
72
72
73
73
::: moniker range=">=vs-2019"
74
74
75
-
To specify a .NET Framework version, choose the **Framework** drop-down menu on the **Create a new project** page.
75
+
To specify a .NET Framework version, select the **Framework** drop-down menu on the **Create a new project** page.
76
76
77
77

78
78
@@ -84,15 +84,15 @@ You can also create empty solutions that have no projects. This might be prefera
84
84
85
85
### To create an empty solution
86
86
87
-
1. On the menu bar, choose**File** > **New** > **Project**.
87
+
1. On the menu bar, select**File** > **New** > **Project**.
88
88
89
89
::: moniker range="vs-2017"
90
90
91
-
2. In the left (**Templates**) pane, choose**Other Project Types** > **Visual Studio Solutions** in the expanded list.
91
+
2. In the left (**Templates**) pane, select**Other Project Types** > **Visual Studio Solutions** in the expanded list.
92
92
93
-
3. In the middle pane, choose**Blank Solution**.
93
+
3. In the middle pane, select**Blank Solution**.
94
94
95
-
4. Enter **Name** and **Location** values for your solution, and then choose**OK**.
95
+
4. Enter **Name** and **Location** values for your solution, and then select**OK**.
96
96
97
97
::: moniker-end
98
98
@@ -102,7 +102,7 @@ You can also create empty solutions that have no projects. This might be prefera
102
102
103
103
3. Select the **Blank Solution** template, and then click **Next**.
104
104
105
-
4. Enter **Name** and **Location** values for your solution, and then choose**Create**.
105
+
4. Enter **Name** and **Location** values for your solution, and then select**Create**.
106
106
107
107
::: moniker-end
108
108
@@ -131,11 +131,11 @@ You can delete solutions and their contents permanently, but not by using the Vi
131
131
132
132
### Permanently delete a solution
133
133
134
-
1. In **Solution Explorer**, on the right-click menu (context menu) of the solution you want to delete, choose**Open folder in File Explorer**.
134
+
1. In **Solution Explorer**, on the right-click menu (context menu) of the solution you want to delete, select**Open folder in File Explorer**.
135
135
136
136
1. In File Explorer, navigate up one level.
137
137
138
-
1.Choose the folder containing the solution and then press the **Delete** key.
138
+
1.Select the folder containing the solution and then press the **Delete** key.
Copy file name to clipboardExpand all lines: docs/ide/solutions-and-projects-in-visual-studio.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Learn about solutions and projects
3
3
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.
0 commit comments