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/extensibility/how-to-diagnose-ui-delays-caused-by-extensions.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ In the following sections, we will go through these steps in more detail.
39
39
40
40
## Identifying the trigger scenario
41
41
42
-
To do diagnose a UI delay, you first need to idetify what (sequence of actions) causes Visual Studio to show the notification. This is in order for you to able to trigger the notification later with logging turned on.
42
+
To do diagnose a UI delay, you first need to identify what (sequence of actions) causes Visual Studio to show the notification. This is in order for you to able to trigger the notification later with logging turned on.
43
43
44
44
## Restarting VS with activity logging on
45
45
@@ -153,3 +153,5 @@ PerfView has detailed guidance under the Help menu that you can use to identify
> If you are unable to address the unresponsiveness due to dependencies you do not have control over (e.g. if your extension has to call synchronous VS services on the UI thread), we would like to know about it. If you are a member of our Visual Studio Partner program, you can contact us by submitting a developer support request. Otherwise, use the 'Report a Problem' tool to submit your feedback and include `"Extension UI Delay Notifications"` in the title. Please also include a detailed description of your analysis.
Copy file name to clipboardExpand all lines: docs/ide/creating-solutions-and-projects.md
+15-21Lines changed: 15 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Create solutions and projects in Visual Studio | Microsoft Docs"
3
3
ms.custom: ""
4
-
ms.date: "06/16/2017"
4
+
ms.date: 02/06/2018
5
5
ms.reviewer: ""
6
6
ms.suite: ""
7
7
ms.technology: "vs-ide-general"
@@ -13,7 +13,6 @@ f1_keywords:
13
13
- "VS.ToolsOptionsPages.Projects.General"
14
14
- "SolutionItemsProject"
15
15
helpviewer_keywords:
16
-
- "solutions [Visual Studio], deleting"
17
16
- "solutions [Visual Studio], creating"
18
17
- "projects [Visual Studio], creating"
19
18
author: "gewarren"
@@ -41,7 +40,7 @@ That being said, solutions and projects are not required to develop apps in Visu
41
40
42
41
## To create a project from a project template
43
42
44
-
1. There are multiple ways to create a new project in Visual Studio. On the Start Page, enter 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. You can also choose **File**, **New**,**Project...** on the menu bar, or choose the **New Project** button on the toolbar.
43
+
1. There are multiple ways to create a new project in Visual Studio. On the Start Page, enter 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. You can also choose **File** > **New** >**Project...** on the menu bar, or choose the **New Project** button on the toolbar.
45
44
46
45

47
46
@@ -54,23 +53,23 @@ That being said, solutions and projects are not required to develop apps in Visu
54
53
55
54
1. Show the list of templates for the programming language you want to use by choosing the triangle next to the language name, and then choose a project type.
56
55
57
-
The following example shows the project templates available for Visual C# web projects.
56
+
The following example shows the project templates available for Visual C# .NET Core projects.
1. Enter a name for the new project in the **Name** box. You can choose to save the project in the default location on your system, or choose the **Browse** button to find another location.
62
61
63
62
You can also optionally choose to change the solution name, or add the new project to a Git repository by choosing **Add to Source Control**.
64
63
65
64
1. Choose the **OK** button to create the solution and project.
66
65
67
-
1. If you want to add an additional project to the solution, choose the solution node in Solution Explorer, and then on the menu bar, choose **Project**,**Add New Item**.
66
+
1. If you want to add an additional project to the solution, choose the solution node in Solution Explorer, and then on the menu bar, choose **Project** >**Add New Item**.
68
67
69
68
## Create a project from existing code files
70
69
71
70
If you have a collection of code source files, you can easily add them to a project.
72
71
73
-
1. On the menu, choose **File**, **New**,**Project From Existing Code**.
72
+
1. On the menu, choose **File** > **New** >**Project From Existing Code**.
74
73
75
74
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.
76
75
@@ -81,31 +80,26 @@ If you have a collection of code source files, you can easily add them to a proj
81
80
82
81
## Add files to a solution
83
82
84
-
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**.
83
+
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**.
85
84
86
85
## Create a .NET project that targets a specific version of the .NET Framework
87
86
88
-
When you create a project, you can specify a specific version of the .NET Framework that you want the project to use. To specify a .NET framework version, choose the **.NET Framework** version drop-down menu in the **New Project** dialog box.
87
+
When you create a project, you can specify a specific version of the .NET Framework that you want the project to use. To specify a .NET framework version, choose the **Framework** drop-down menu in the **New Project** dialog box.
89
88
90
-

89
+

91
90
92
91
> [!NOTE]
93
-
> If you are creating a project from a .NET Core template, the .NET Framework version you select in the drop-down is ignored.
94
-
95
-
> [!TIP]
96
-
> If you set the .NET Framework version before selecting a project template, then Visual Studio will only show templates that are compatible with that .NET Framework version.
97
-
98
-
You must have .NET Framework 3.5 installed on your system to access .NET Framework versions earlier than .NET Framework 4.
92
+
> You must have .NET Framework 3.5 installed on your system to access .NET Framework versions earlier than .NET Framework 4.
99
93
100
94
## Create empty solutions
101
95
102
96
You can also create empty solutions that have no projects. This might be preferable in cases where you want to construct your solution and projects from scratch.
103
97
104
98
### To create an empty solution
105
99
106
-
1. On the menu, choose **File**, **New**,**Project...**.
100
+
1. On the menu, choose **File** > **New** >**Project...**.
107
101
108
-
1. In the left (**Templates**) pane, choose **Other Project Types**,**Visual Studio Solutions** in the expanded list.
102
+
1. In the left (**Templates**) pane, choose **Other Project Types** >**Visual Studio Solutions** in the expanded list.
109
103
110
104
1. In the middle pane, choose **Blank Solution**.
111
105
@@ -119,7 +113,7 @@ As mentioned earlier, you can also open code files without needing a project or
119
113
120
114
If you create a .NET-based project without specifying a disk location, it is a temporary project. Temporary projects enable you to experiment with .NET projects. At any time while you are working with a temporary project, you can choose to save it or discard it.
121
115
122
-
To create a temporary project, first go to **Tools**, **Options**, **Projects and Solutions**,**General**, and uncheck the **Save new projects when created** checkbox. Then open the **New Project** dialog box as usual.
116
+
To create a temporary project, first go to **Tools** > **Options** > **Projects and Solutions** >**General**, and uncheck the **Save new projects when created** checkbox. Then open the **New Project** dialog box as usual.
123
117
124
118
## Delete a solution, project, or item
125
119
@@ -138,7 +132,7 @@ You can delete solutions and their contents permanently, but not by using the Vi
138
132
139
133
## See also
140
134
141
-
[Solutions and Projects](../ide/solutions-and-projects-in-visual-studio.md)
135
+
[Solutions and projects](../ide/solutions-and-projects-in-visual-studio.md)
142
136
[Microsoft's open source repositories on GitHub](https://github.com/Microsoft)
143
137
[Visual Studio Samples](../ide/visual-studio-samples.md)
Copy file name to clipboardExpand all lines: docs/ide/finding-and-using-visual-studio-extensions.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ If you wish to disable automatic updates, you can disable the feature for all ex
68
68
69
69
New in **Visual Studio 2017 version 15.3**, Visual Studio notifies you if it suspects that an extension was involved in a crash during a previous session. When Visual Studio crashes, it stores the exception stack. The next time Visual Studio launches, it examines the stack, starting with the leaf and working towards the base. If Visual Studio determines that a frame belongs to a module that is part of an installed and enabled extension, it shows a notification.
70
70
71
-
New in **Visual Studio 2017 version 15.6 preview 3**, Visual Studio also notifies you if it suspects an extension is causing the UI to be unresponsive.
71
+
New in **Visual Studio 2017 version 15.6**, Visual Studio also notifies you if it suspects an extension is causing the UI to be unresponsive.
72
72
73
73
When these notifications are shown, you can ignore the notification or take one of the following actions:
Copy file name to clipboardExpand all lines: docs/ide/go-to-and-peek-definition.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ helpviewer_keywords:
16
16
author: "gewarren"
17
17
ms.author: "gewarren"
18
18
manager: ghogen
19
-
ms.workload:
19
+
ms.workload:
20
20
- "multiple"
21
21
---
22
22
# View type and member definitions
@@ -66,7 +66,7 @@ For example, if you run the **Go To Definition** command for <xref:System.Consol
66
66
67
67
### View decompiled source definitions instead of metadata (C#)
68
68
69
-
New in **Visual Studio 2017 version 15.6 preview 2**, you can set an option to see decompiled source code when you view the definition of a C# type or member who's source code is unavailable. To turn on this feature, choose **Tools** > **Options** from the menu bar. Then, expand **Text Editor** > **C#** > **Advanced**, and select **Enable navigation to decompiled sources**.
69
+
New in **Visual Studio 2017 version 15.6**, you can set an option to see decompiled source code when you view the definition of a C# type or member who's source code is unavailable. To turn on this feature, choose **Tools** > **Options** from the menu bar. Then, expand **Text Editor** > **C#** > **Advanced**, and select **Enable navigation to decompiled sources**.
70
70
71
71

72
72
@@ -75,5 +75,5 @@ New in **Visual Studio 2017 version 15.6 preview 2**, you can set an option to s
75
75
76
76
## See also
77
77
78
-
[Navigating Code](../ide/navigating-code.md)
78
+
[Navigating Code](../ide/navigating-code.md)
79
79
[How to: View and Edit Code by Using Peek Definition (Alt+F12)](how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12.md)
0 commit comments