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/containers/docker-compose-properties.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
@@ -50,7 +50,7 @@ In addition, the property `DockerComposeProjectPath` in a `.csproj` or `.vbproj`
50
50
51
51
## Example
52
52
53
-
If you change the location of the `docker-compose` files, by setting `DockerComposeBaseFilePath` to a relative path, then you also need to make sure that the build context is changed so that it references the solution folder. For example, if your `docker-compose` file is a folder called *DockerComposeFiles*, then Docker Compose file should set the build context to ".." or "../..", depending on where it's relative to the solution folder.
53
+
If you change the location of the `docker-compose` files, by setting `DockerComposeBaseFilePath` to a relative path, then you also need to make sure that the build context is changed so that it references the solution folder. For example, if your `docker-compose` file is a folder called *DockerComposeFiles*, then Docker Compose file should set the build context to ".." or "../..", depending on where it is relative to the solution folder.
Copy file name to clipboardExpand all lines: docs/debugger/debugger-cannot-display-source-code-or-disassembly.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 @@ This error reads:
27
27
28
28
- If you are debugging script, you may have hit a breakpoint while there were no threads in your program. Choose **Step** or **Continue** from the **Debug** menu to resume debugging.
29
29
30
-
- Security considerations may have prevented the debugger from reading stack, thread, register, and other context information from the program you are debugging. This is most likely to happen if you are debugging a Web application and don't have the right permission to access the virtual directory. Set security for the virtual directory to Anonymous and try again.
30
+
- Security considerations may have prevented the debugger from reading stack, thread, register, and other context information from the program you are debugging. This is most likely to happen if you are debugging a Web application and don't have the right permission to access the virtual directory. Set security for the virtual directory to Anonymous and try again. For more information about setting this in IIS, see [IIS](/aspnet/core/security/authentication/windowsauth?tabs=visual-studio#iis).
31
31
32
32
## Related content
33
33
-[Debugging in Visual Studio](../debugger/index.yml)
Copy file name to clipboardExpand all lines: docs/debugger/watch-and-quickwatch-windows.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Set a watch on variables and expressions
3
3
description: While you debug, see variables and expressions in Watch and QuickWatch. Watch can display several variables, QuickWatch only one, and only while in break.
4
-
ms.date: 04/25/2024
4
+
ms.date: 02/10/2025
5
5
ms.topic: how-to
6
6
f1_keywords:
7
7
- "vs.debug.quickwatch"
@@ -133,11 +133,11 @@ To make your search more or less thorough, use the **Search Deeper** dropdown at
133
133
>[!NOTE]
134
134
> This feature is supported in .NET Core 3.0 or higher.
135
135
136
-
You can quickly inspect objects by their properties in the Watch window with the **Pinnable Properties** tool. To use this tool, hover over a property and select the pin icon that appears or right-click and select the **Pin Member as Favorite** option in the resulting context menu. This bubbles up that property to the top of the object’s property list, and the property name and value is displayed in the **Value** column. To unpin a property, select the pin icon again or select the **Unpin Member as Favorite** option in the context menu.
136
+
You can quickly inspect objects by their properties in the Watch window with the **Pinnable Properties** tool. To use this tool, hover over a property and select the pin icon that appears or right-click and select the **Pin Member as Favorite** option in the resulting context menu. This action bubbles up that property to the top of the object’s property list, and the property name and value is displayed in the **Value** column. To unpin a property, select the pin icon again or select the **Unpin Member as Favorite** option in the context menu.
137
137
138
138

139
139
140
-
You can also toggle property names and filter out non-pinned properties when viewing the object’s property list in the Watch window. You can access both options by selecting the buttons in the toolbar above the watch window.
140
+
You can also toggle property names and filter out non-pinned properties when viewing the object’s property list in the Watch window. You can access both options by selecting the buttons in the toolbar above the watch window.
141
141
142
142
::: moniker-end
143
143
@@ -149,7 +149,7 @@ To refresh the value, select the refresh icon, or press the spacebar. The debugg
149
149
150
150
Hover over the refresh icon or see the **Value** column for the reason the expression wasn't evaluated. Reasons include:
151
151
152
-
- An error occurred as the expression was being evaluated, as in the previous example. A timeout might occur, or a variable might be out of scope.
152
+
- An error occurred as the expression was being evaluated, as in the previous example. A time-out might occur, or a variable might be out of scope.
153
153
154
154
- The expression has a function call that could trigger a side effect in the app. See [Expression side effects](#bkmk_sideEffects).
155
155
@@ -209,7 +209,7 @@ For C# only, when evaluation of properties or implicit function calls is turned
Ifyouhave [Copilot](../ide/visual-studio-github-copilot-extension.md), youcangetAIassistancewhileyou're looking at variables in the Watch windows. Right-click on a variable and use the **Ask Copilot**  button. In this scenario, Copilot already knows the context for your question, so you don'tneedtoprovidecontextyourselfinchat. Formoreinformation, see [DebugwithCopilot](../debugger/debug-with-copilot.md).
To have your Windows desktop application install and run successfully, first install all components upon which your application is dependent onto the target computer. For example, most applications created using Visual Studio have a dependency on the .NET Framework. In this case, the correct version of the common language runtime must be present on the destination computer before the application is installed.
24
+
To successfully install and run a Windows desktop application, the components upon which your application depends must be installed onto the target computer. This article provides an overview of the installation of required components for [ClickOnce](../deployment/clickonce-security-and-deployment.md) and Windows Installer [Setup](../deployment/deploying-applications-services-and-components.md#create-an-installer-package-windows-desktop-1) projects.
25
25
26
-
You can select these prerequisites in the **Prerequisites Dialog Box** and install the .NET Framework and any other redistributable as a part of your installation. This practice is known as *bootstrapping*. Visual Studio generates a Windows executable program named *Setup.exe*, also known as a *bootstrapper*. The bootstrapper is responsible for installing these prerequisites before your application runs. For more information about selecting these prerequisites, see [Prerequisites dialog box](../ide/reference/prerequisites-dialog-box.md).
26
+
You can select required components, called prerequisites, such as the .NET Framework and any other redistributable as a part of your installation. The process of installing prerequisites is known as *bootstrapping*. Visual Studio generates a Windows executable program named *Setup.exe*, also known as a *bootstrapper*. The bootstrapper is responsible for installing these prerequisites before your application runs. For more information about selecting these prerequisites, see [Prerequisites dialog box](../ide/reference/prerequisites-dialog-box.md).
27
27
28
-
Each prerequisite is a bootstrapper package. A bootstrapper package is a group of directories and files containing the manifest files that describe how the prerequisites are installed. If your application prerequisites are not listed in the **Prerequisite Dialog Box**, you can create custom bootstrapper packages and add them to Visual Studio. Then you can select the prerequisites in the **Prerequisites Dialog Box**. For more information, see [Create bootstrapper packages](../deployment/creating-bootstrapper-packages.md).
28
+
A *bootstrapper package* is a group of directories and files containing the manifest files that describe how the prerequisites are installed. Each prerequisite that appears in the **Prerequisites Dialog Box** is a bootstrapper package. If your application prerequisites aren't listed in the **Prerequisite Dialog Box**, you can create custom bootstrapper packages and add them to Visual Studio. Then you can select the prerequisites in the **Prerequisites Dialog Box**. For more information, see [Create bootstrapper packages](../deployment/creating-bootstrapper-packages.md).
29
29
30
-
By default, bootstrapping is enabled for both Windows Installer deployment (by using Setup projects in Visual Studio) and ClickOnce deployment. The bootstrapper generated for Windows Installer deployment is not signed, but in ClickOnce deployment, the bootstrapper is signed. You can disable bootstrapping for a component, but you should do so only if you are sure that the correct version of the component is already installed on all target computers.
30
+
By default, bootstrapping is enabled for both Windows Installer deployment (by using Setup projects in Visual Studio) and ClickOnce deployment. The bootstrapper generated for Windows Installer deployment isn't signed, but in ClickOnce deployment, the bootstrapper is signed. You can disable bootstrapping for a component, but you should do so only if you're sure that the correct version of the component is already installed on all target computers.
31
31
32
32
## Bootstrapping and ClickOnce deployment
33
-
Before installing an application on a client computer, ClickOnce examines the client to ensure that it has the requirements specified in the application manifest. These include the following requirements:
33
+
Before installing an application on a client computer, ClickOnce examines the client to ensure that it has the requirements specified in the application manifest. These requirements include the following:
34
34
35
35
- The minimum required version of the common language runtime, which is specified as an assembly dependency in the application manifest.
36
36
@@ -45,17 +45,12 @@ By default, bootstrapping is enabled for both Windows Installer deployment (by u
45
45
46
46
If you use Visual Studio and ClickOnce to deploy your application, the bootstrapper packages that are selected by default depend on the version of the .NET Framework in the solution. However, if you change the target .NET Framework version, you must update the options in the **Prerequisites Dialog Box** manually.
|.NET Framework 4|.NET Framework 4<br /><br /> Windows Installer 3.1|
52
-
53
48
With ClickOnce deployment, the *Publish.htm* page generated by the ClickOnce Publish Wizard points either to a link that installs only the application, or to a link that installs both the application and the bootstrapped components.
54
49
55
50
If you generate the bootstrapper by using the ClickOnce Publish Wizard or the Publish Page in Visual Studio, the *Setup.exe* is automatically signed. However, if you want to use your customer's certificate to sign the bootstrapper, you can sign the file later.
56
51
57
52
## Bootstrapping and MSBuild
58
-
If you do not use Visual Studio, but rather compile your applications on the command line, you can create the ClickOnce bootstrapping application by using a Microsoft Build Engine (MSBuild) task. For more information, see [GenerateBootstrapper task](../msbuild/generatebootstrapper-task.md).
53
+
If you don't use Visual Studio, but rather compile your applications on the command line, you can create the ClickOnce bootstrapping application by using a Microsoft Build Engine (MSBuild) task. For more information, see [GenerateBootstrapper task](../msbuild/generatebootstrapper-task.md).
59
54
60
55
As an alternative to bootstrapping, you can pre-deploy components using an electronic software distribution system, such as Microsoft Systems Management Server (SMS).
61
56
@@ -73,7 +68,7 @@ By default, bootstrapping is enabled for both Windows Installer deployment (by u
73
68
|**-homesite=**`true`**|**`false`| When `true`, downloads the dependencies from the preferred location on the vendor's site. This setting overrides the **-componentsurl** setting. When `false`, downloads the dependencies from the URL specified by **-componentsurl**. |
74
69
75
70
## Operating system support
76
-
The Visual Studio bootstrapper is not supported on Windows Server 2008 Server Core or Windows Server 2008 R2 Server Core, as they provide a low-maintenance server environment with limited functionality. For example, the Server Core installation option only supports the .NET Framework 3.5 Server Core profile, which cannot run the Visual Studio features that depend on the full .NET Framework.
71
+
The Visual Studio bootstrapper isn't supported on Windows Server 2008 Server Core or Windows Server 2008 R2 Server Core, as they provide a low-maintenance server environment with limited functionality. For example, the Server Core installation option only supports the .NET Framework 3.5 Server Core profile, which can't run the Visual Studio features that depend on the full .NET Framework.
77
72
78
73
## Related content
79
74
-[Choose a ClickOnce deployment strategy](../deployment/choosing-a-clickonce-deployment-strategy.md)
Copy file name to clipboardExpand all lines: docs/extensibility/visualstudio.extensibility/editor/editor.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,11 @@ Extensions can contribute new CodeLenses to the Visual Studio editor. A CodeLens
43
43
44
44
For detailed walkthrough of how to provide your own CodeLens with your extension, refer to [Extending Visual Studio editor with a new CodeLens](./walkthroughs/codelens.md)
45
45
46
+
### Taggers
47
+
Extensions can contribute new taggers to the Visual Studio editor. Taggers are used to associate data with spans of text, such data is consumed by other Visual Studio features (E.g., CodeLens).
48
+
49
+
For detailed walkthrough of how to provide your own taggers with your extension, refer to [Extending Visual Studio editor with a new tagger](./walkthroughs/taggers.md)
50
+
46
51
## Related content
47
52
48
53
Learn about the editor interfaces and types at [Editor concepts](editor-concepts.md).
0 commit comments