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/visual-studio-multi-targeting-overview.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Targeted .NET Frameworks
3
3
description: Learn how to specify the version of the .NET Framework that you want your project to target so the application can only use functionality that's available in the specified version.
4
-
ms.date: 03/23/2022
4
+
ms.date: 10/19/2022
5
5
ms.topic: overview
6
6
helpviewer_keywords:
7
7
- targeting .NET Framework [Visual Studio]
@@ -43,9 +43,9 @@ Framework targeting includes the following features:
43
43
44
44
When you work on a project that targets an earlier framework version, Visual Studio dynamically changes the development environment, as follows:
45
45
46
-
- It filters items in the **Add New Item** dialog box, the **Add New Reference** dialog box, and the **Add Service Reference** dialog box to omit choices that are not available in the targeted version.
46
+
- It filters items in the **Add New Item** dialog box, the **Add New Reference** dialog box, and the **Add Service Reference** dialog box to omit choices that aren't available in the targeted version.
47
47
48
-
- It filters custom controls in the **Toolbox** to remove those that are not available in the targeted version and to show only the most up-to-date controls when multiple controls are available.
48
+
- It filters custom controls in the **Toolbox** to remove those that aren't available in the targeted version and to show only the most up-to-date controls when multiple controls are available.
49
49
50
50
- It filters **IntelliSense** to omit language features that aren't available in the targeted version.
51
51
@@ -65,7 +65,7 @@ When you create a .NET Framework project, you can select the target .NET Framewo
65
65
66
66
::: moniker range="vs-2019"
67
67
68
-

68
+

69
69
70
70
::: moniker-end
71
71
@@ -147,9 +147,9 @@ In an existing Visual Basic, C#, or F# project, you change the target .NET versi
147
147
148
148
## Resolve system and user assembly references
149
149
150
-
To target a .NET version, you must first install the appropriate assembly references. You can download developer packs for different versions of .NET on the [.NET downloads](https://www.microsoft.com/net/download/windows) page.
150
+
To target a .NET version, you must first install the appropriate assembly references. You can download developer packs for different versions of .NET on the [.NET downloads](https://dotnet.microsoft.com/download) page.
151
151
152
-
For .NET Framework projects, the **Add Reference** dialog box disables system assemblies that do not pertain to the target .NET Framework version so that they cannot be inadvertently added to a project. (System assemblies are *.dll* files that are included in a .NET Framework version.) References that belong to a framework version that's higher than the targeted version will not resolve, and controls that depend on such a reference cannot be added. If you want to enable such a reference, reset the .NET Framework target of the project to one that includes the reference.
152
+
For .NET Framework projects, the **Add Reference** dialog box disables system assemblies that don't pertain to the target .NET Framework version so that they can't be inadvertently added to a project. (System assemblies are *.dll* files that are included in a .NET Framework version.) References that belong to a framework version that's higher than the targeted version won't resolve, and controls that depend on such a reference can't be added. If you want to enable such a reference, reset the .NET Framework target of the project to one that includes the reference.
153
153
154
154
For more information about assembly references, see [Resolve assemblies at design time](../msbuild/resolving-assemblies-at-design-time.md).
Copy file name to clipboardExpand all lines: docs/python/tutorial-working-with-python-in-visual-studio-step-01-create-project.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ This tutorial begins with a simple project containing a single, empty code file.
77
77
78
78
Python support in Visual Studio includes several project templates, such as web applications in the Bottle, Flask, and Django frameworks. For this tutorial, start with an empty project.
79
79
80
-
1. Select the **PythonConsoleApp** template, and select **Next**.
80
+
1. Select the **PythonApp** template, and select **Next**.
81
81
82
82
1. On the **Configure your new project** screen, specify a name and file location for the project, and then select **Create**.
0 commit comments