Skip to content

Commit 5b72f87

Browse files
authored
Merge pull request #8629 from MicrosoftDocs/main638031135155929162sync_temp
Repo sync for protected CLA branch
2 parents 1e8661b + 7615f31 commit 5b72f87

8 files changed

+22
-12
lines changed

docs/azure/azure-cosmosdb-add-connected-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The connected service functionality adds all the needed references and connectio
5555

5656
If you need to create a database, go to the next step. Otherwise, skip to step 7.
5757

58-
![Add existing Cosmos DB to project](./media/azure-cosmosdb-add-connected-service/created-cosmosdb.png)
58+
![Add existing Azure Cosmos DB to project](./media/azure-cosmosdb-add-connected-service/created-cosmosdb.png)
5959

6060
1. To create an Azure Cosmos DB:
6161

docs/data-tools/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ landingContent:
7070
links:
7171
- text: Azure SQL database
7272
url: /azure/sql-database/sql-database-connect-query-dotnet-visual-studio
73-
- text: Cosmos DB - .NET console app
73+
- text: Azure Cosmos DB - .NET console app
7474
url: /azure/cosmos-db/sql-api-get-started
75-
- text: Cosmos DB - .NET web app
75+
- text: Azure Cosmos DB - .NET web app
7676
url: /azure/cosmos-db/sql-api-dotnet-application
7777
- text: Azure Data Lake Analytics
7878
url: /azure/data-lake-analytics/data-lake-analytics-data-lake-tools-get-started

docs/data-tools/troubleshooting-service-references.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ This topic lists solutions to common issues that may occur when you are working
2828

2929
If you want to update or remove a service reference, see the article "[Add, update, or remove a WCF data service reference](how-to-add-update-or-remove-a-wcf-data-service-reference.md)".
3030

31+
## Error when no service address is provided
32+
33+
When you press the **Go** button with no address, you may see an error message that says "Please enter the address for a service." To resolve this, you need to identify a service's address and enter it.
34+
35+
- If it's a service in your solution, you can use the **Discover** button to find and select it, and then try the **Go** button again.
36+
- If it's a service hosted somewhere on the internet, add it by following the instructions at [Add a WCF service reference](how-to-add-update-or-remove-a-wcf-data-service-reference.md#add-a-wcf-service-reference).
37+
3138
## Error returning data from a service
3239

3340
When you return a `DataSet` or `DataTable` from a service, you may receive a "The maximum size quota for incoming messages has been exceeded" exception. By default, the `MaxReceivedMessageSize` property for some bindings is set to a relatively small value to limit exposure to denial-of-service attacks. You can increase this value to prevent the exception. For more information, see <xref:System.ServiceModel.HttpBindingBase.MaxReceivedMessageSize%2A>.

docs/ide/how-to-set-multiple-startup-projects.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'How to: Set multiple startup projects'
33
description: Learn how Visual Studio allows you to specify how more than one project is run when you start the debugger.
44
ms.custom: SEO-VS-2020
5-
ms.date: 12/21/2021
5+
ms.date: 11/03/2022
66
ms.topic: how-to
77
helpviewer_keywords:
88
- startup projects, setting multiple startup projects
@@ -32,13 +32,15 @@ Visual Studio allows you to specify how more than one project is run when you pr
3232

3333
4. Choose the **Multiple Startup Projects** option and set the appropriate actions.
3434

35-
## Example
35+
## With Docker Compose
3636

37-
The following example shows a solution WebFrontEndA with three projects, a front-end web site, a Web API project, and a Docker Compose project. The following screenshot shows how to start two of the three projects, one with debugging and one without:
37+
When you're using Docker Compose to launch containerized projects on a local machine, you use a different method (launch profiles) to start multiple projects.
38+
39+
The following example shows a solution `WebFrontEndA` with three projects, a front-end web site, a Web API project, and a Docker Compose project. The following screenshot shows how to start two of the three projects, one with debugging and one without:
3840

3941
![Screenshot of the Solution Property Pages.](media/vs-2022/startup-projects.png)
4042

41-
In this example and any other Docker Compose scenario, if you choose `docker-compose` as the single startup project, but then you'll use a different way of specifying which projects or services to start. You'll use a Docker Compose launch profile to determine what services to start, and whether or not to attach the debugger, and there's a different dialog in Visual Studio for configuring it. See [Start a subset of services](../containers/launch-profiles.md). The **Solution Property Pages** dialog is only used for non-containerized solutions or when you are *not* using Docker Compose to manage startup.
43+
In this example and any other Docker Compose scenario, you choose `docker-compose` as the single startup project, but then you'll use a different way of specifying which projects or services to start. You'll use a Docker Compose launch profile to determine what services to start, and whether or not to attach the debugger, and there's a different dialog in Visual Studio for configuring it. See [Start a subset of services](../containers/launch-profiles.md). The **Solution Property Pages** dialog is only used for non-containerized solutions, or when you are *not* using Docker Compose to manage startup.
4244

4345
## See also
4446

docs/ide/understanding-build-configurations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Understand build configurations
33
description: Learn how you need build configurations when you need to build your projects with different settings in Visual Studio.
44
ms.custom: SEO-VS-2020
5-
ms.date: 12/06/2021
5+
ms.date: 11/03/2022
66
ms.technology: vs-ide-compile
77
ms.topic: conceptual
88
f1_keywords:
@@ -33,7 +33,7 @@ ms.workload:
3333

3434
[!INCLUDE [Visual Studio](~/includes/applies-to-version/vs-windows-only.md)]
3535

36-
You need build configurations when you need to build your projects with different settings. For example, **Debug** and **Release** are configurations and different compiler options are used accordingly when building them. One configuration is active and is indicated in the command bar at the top of the IDE.
36+
You need build configurations when you need to build your projects with different settings. For example, **Debug** and **Release** are build configurations, and different compiler options are used accordingly when building them. One configuration is active and is indicated in the command bar at the top of the IDE.
3737

3838
:::moniker range="<=vs-2019"
3939
![Screenshot showing the active configuration in the main Visual Studio toolbar.](media/understanding-build-configurations/active-config.png)

docs/msbuild/xsltransformation-task.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Transforms an XML input by using an XSLT or compiled XSLT and outputs to an outp
3232
|---------------|-----------------|
3333
|`OutputPaths`|Required <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Specifies the output files for the XML transformation.|
3434
|`Parameters`|Optional `String` parameter.<br /><br /> Specifies the parameters to the XSLT Input document. Provide the raw XML that holds each parameter as `<Parameter Name="" Value="" Namespace="" />`.|
35+
|`UseTrustedSettings`|Optional boolean parameter.<br/><br/> If `True`, enables relaxed XSLT security settings that allow the use of the XSLT `document()` function and embedded scripts. See <xref:System.Xml.Xsl.XsltSettings.TrustedXslt*>. |
3536
|`XmlContent`|Optional `String` parameter.<br /><br /> Specifies the XML input as a string.|
3637
|`XmlInputPaths`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Specifies the XML input files.|
3738
|`XslCompiledDllPath`|Optional <xref:Microsoft.Build.Framework.ITaskItem> parameter.<br /><br /> Specifies the compiled XSLT.|

docs/python/debugging-mixed-mode-c-cpp-python-in-visual-studio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ Mixed-mode debugging features include the following, as explained in this articl
4242
> [!Tip]
4343
> When you enable native code debugging, the Python output window may disappear immediately when the program has completed without giving you the usual **Press any key to continue** pause. To force a pause, add the `-i` option to the **Run** > **Interpreter Arguments** field on the **Debug** tab when you enable native code debugging. This argument puts the Python interpreter into interactive mode after the code finishes, at which point it waits for you to press **Ctrl**+**Z** > **Enter** to exit.
4444
45-
1. When attaching the mixed-mode debugger to an existing process (**Debug** > **Attach to Process**), use the **Select** button to open the **Select Code Type** dialog. Then set the **Debug these code types** option and select both **Native** and **Python** in the list:
45+
1. When attaching the mixed-mode debugger to an existing process (**Debug** > **Attach to Process**), use the **Select** button to open the **Select Code Type** dialog. Then set the **Debug these code types** option and select **Python (native)** from the list:
4646

47-
![Selecting the Native and Python code types](media/mixed-mode-debugging-code-type.png)
47+
![Screenshot of choosing the Python (native) code type for mixed-mode debugging.](media/mixed_mode_debugging_attach_type_updated.png)
4848

49-
The code type settings are persistent, so if you want to disable mixed-mode debugging when attaching to a different process later, clear the **Python** code type.
49+
The code type settings are persistent, so if you want to disable mixed-mode debugging when attaching to a different process later, clear the **Python (native)** code type and apply the **Native** code type.
5050

5151
It's possible to select other code types in addition to, or instead of, **Native**. For example, if a managed application hosts CPython, which in turn uses native extension modules, and you want to debug all three, you can check **Python**, **Native**, and **Managed** together for a unified debugging experience including combined call stacks and stepping between all three runtimes.
5252

Loading

0 commit comments

Comments
 (0)