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/azure/overview-connected-services.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Connected Services includes a collection of tools in Visual Studio that help you
27
27
Get started by right-clicking on the **Connected Services** node in **Solution Explorer** and select **Manage Connected Services**.
28
28
:::moniker-end
29
29
30
-
:::moniker range="vs-2022"
30
+
:::moniker range=">=vs-2022"
31
31
Get started by right-clicking on the project node, and choosing **Add > Connected Service**. You can also right-click on the **Connected Services** node in **Solution Explorer** and choose a specific service to add.
Copy file name to clipboardExpand all lines: docs/containers/edit-and-refresh.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,9 @@ To debug apps in a local Docker container, the following tools must be installed
28
28
29
29
::: moniker-end
30
30
31
-
::: moniker range="vs-2022"
31
+
::: moniker range=">=vs-2022"
32
32
33
-
-[Visual Studio 2022](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) with the Web Development workload installed
33
+
-[Visual Studio 2022 or later](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) with the Web Development workload installed
Copy file name to clipboardExpand all lines: docs/containers/view-and-diagnose-containers.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The **Containers** window opens automatically when you start a containerized .NE
43
43
The left side of the window shows the list of containers on your local machine. The containers associated with your current solution are under **Solution Containers**. On the right is a pane with tabs for **Environment**, **Labels**, **Ports**, **Volumes**, **Files**, and **Logs**.
44
44
45
45
:::moniker-end
46
-
:::moniker range="vs-2022"
46
+
:::moniker range=">=vs-2022"
47
47
48
48
The **Containers** window opens automatically when you start a containerized .NET project. To open the **Containers** window any time, select **View** > **Other Windows** > **Containers** from the Visual Studio menu, or press **Ctrl**+**K**, **Ctrl**+**O**. You can also use **Ctrl**+**Q** to open the Visual Studio Search box, type *Containers*, and select the **Containers** item.
49
49
@@ -72,7 +72,7 @@ The **Environment** tab shows the environment variables in the container. You ca
72
72

73
73
74
74
:::moniker-end
75
-
:::moniker range="vs-2022"
75
+
:::moniker range=">=vs-2022"
76
76
77
77

78
78
@@ -131,7 +131,7 @@ To open a file in Visual Studio, double-click the file or right-click it and cho
131
131
:::moniker range="vs-2019"
132
132

133
133
:::moniker-end
134
-
:::moniker range="vs-2022"
134
+
:::moniker range=">=vs-2022"
135
135

Copy file name to clipboardExpand all lines: docs/debugger/getting-started-with-the-debugger-cpp.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@ If you're new to debugging, you might want to read [Debugging for absolute begin
33
33
34
34
- Visual Studio 2022 **version 17.12** or later with the **Desktop development with C++** workload installed.
35
35
36
-
::: moniker range="vs-2022"
36
+
::: moniker range=">=vs-2022"
37
37
38
-
- To install Visual Studio 2022 for free, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page.
38
+
- To install Visual Studio for free, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page.
Copy file name to clipboardExpand all lines: docs/debugger/remote-debugging-csharp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ The debugger can't deploy Visual C# or Visual Basic desktop applications to a re
63
63
64
64
4. On the **Properties** page, choose the **Debug** tab.
65
65
66
-
::: moniker range="vs-2022"
66
+
::: moniker range=">=vs-2022"
67
67
For C# projects targeting .NET Core or .NET 5+, starting in Visual Studio 2022, choose the **Debug launch profiles UI** from the **Debug** tab to configure settings for remote debugging.
68
68
69
69

Copy file name to clipboardExpand all lines: docs/debugger/using-tracepoints.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The following example program is a simple `for` loop with a counter variable tha
26
26
:::image type="content" source="../debugger/media/counterexample.png" alt-text="Screenshot of a sample counter program.":::
27
27
::: moniker-end
28
28
29
-
::: moniker range="vs-2022"
29
+
::: moniker range=">=vs-2022"
30
30
31
31
The following example program is a simple `for` loop with a counter variable that increases by one every time the loop runs another iteration.
32
32
@@ -85,7 +85,7 @@ You can set tracepoints by specifying an output string under the **Action** chec
85
85
86
86
::: moniker-end
87
87
88
-
::: moniker range="vs-2022"
88
+
::: moniker range=">=vs-2022"
89
89
90
90
You can set tracepoints by specifying an output string under the **Action** checkbox in the **Breakpoint Settings** window.
91
91
@@ -145,7 +145,7 @@ You can also use special keywords to display more specific information. Enter th
145
145
146
146
::: moniker-end
147
147
148
-
::: moniker range="vs-2022"
148
+
::: moniker range=">=vs-2022"
149
149
150
150
This menu allows you to log a message to the Output window. Type the strings you want to output into the message box (no quotes necessary). If you want to display values of variables, make sure you enclose it in curly braces.
151
151
@@ -200,7 +200,7 @@ For a more comprehensive look at valid expressions you can use while setting con
200
200
201
201
::: moniker-end
202
202
203
-
::: moniker range="vs-2022"
203
+
::: moniker range=">=vs-2022"
204
204
205
205
For a conditional expression, an output message displays only when certain conditions are met.
206
206
@@ -237,7 +237,7 @@ For hit count, you can choose to output a message when the line of code where th
237
237
238
238
::: moniker-end
239
239
240
-
::: moniker range="vs-2022"
240
+
::: moniker range=">=vs-2022"
241
241
242
242
A hit count condition allows you to send output only after the line of code where the tracepoint is set has executed a specified number of times.
243
243
@@ -271,7 +271,7 @@ Enclose strings (such as names) in double quotes. Values can be entered without
271
271
272
272
::: moniker-end
273
273
274
-
::: moniker range="vs-2022"
274
+
::: moniker range=">=vs-2022"
275
275
276
276
For a filter condition, specify which devices, processes, or threads output is shown for.
Copy file name to clipboardExpand all lines: docs/get-started/tutorial-open-project-from-repo.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,11 @@ In this tutorial, you learn how to:
26
26
27
27
- If you don't have Visual Studio yet, go to [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) to install it for free.
28
28
29
-
::: moniker range="vs-2022"
29
+
::: moniker range=">=vs-2022"
30
30
31
31
## Open a project from a GitHub repo
32
32
33
-
Visual Studio makes it easy to open a project from a repo. You can do so when you start Visual Studio, or you can do so directly from within the [Visual Studio IDE](visual-studio-ide.md?view=vs-2022&preserve-view=true).
33
+
Visual Studio makes it easy to open a project from a repo. You can do so when you start Visual Studio, or you can do so directly from within the [Visual Studio IDE](visual-studio-ide.md).
34
34
35
35
Here's how.
36
36
@@ -311,7 +311,7 @@ For more information, see:
311
311
312
312
::: moniker-end
313
313
314
-
::: moniker range="vs-2022"
314
+
::: moniker range=">=vs-2022"
315
315
316
316
-[About Git in Visual Studio](../version-control/git-with-visual-studio.md)
317
317
-[Brpwse a repo](../version-control/git-browse-repository.md)
Copy file name to clipboardExpand all lines: docs/ide/class-designer/designing-and-viewing-classes-and-types.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ If you haven't installed the **Class Designer** component, follow these steps to
84
84
::: moniker range="vs-2019"
85
85
:::image type="content" source="media/vs-2019/class-designer-component.png" alt-text="Screenshot of the Class Designer component in the Visual Studio Installer." lightbox="media/vs-2019/class-designer-component.png":::
86
86
::: moniker-end
87
-
::: moniker range="vs-2022"
87
+
::: moniker range=">=vs-2022"
88
88
:::image type="content" source="media/vs-2022/class-designer-component.png" alt-text="Screenshot of the Class Designer component in the Visual Studio Installer." lightbox="media/vs-2022/class-designer-component.png":::
0 commit comments