Skip to content

Commit 364734b

Browse files
authored
Merge pull request #11070 from MicrosoftDocs/main638947839091932536sync_temp
Repo sync for protected branch
2 parents 5f2b227 + f092b68 commit 364734b

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

docs/designers/disable-dpi-awareness.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ manager: mijacobs
88
ms.subservice: ui-designers
99
ms.topic: how-to
1010
ms.custom: engagement-fy23
11+
monikerRange: "<=vs-2022"
1112
---
1213
# Fix HDPI/scaling issues with Windows Forms Designer in Visual Studio
1314

docs/designers/scaling-percentage-display-setting-message.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ author: ghogen
77
ms.author: ghogen
88
manager: mijacobs
99
ms.subservice: ui-designers
10+
monikerRange: "<=vs-2022"
1011
---
1112
# Scaling on your main display is set to X%
1213

docs/ide/finding-references.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Finding References in Your Code
33
description: Use the Find All References command in Visual Studio to find references to particular code elements in your code. Search by reference type.
4-
ms.date: 04/05/2025
4+
ms.date: 9/29/2025
55
ms.topic: conceptual
66
helpviewer_keywords:
77
- code editor, find all references
@@ -15,7 +15,7 @@ ms.subservice: general-ide
1515

1616
# Find references in your code
1717

18-
You can use the **Find All References** command to determine where particular code elements are referenced throughout your codebase. The **Find All References** command is available on the context (right-click) menu of the element you want to find references to. You can also select the element and then select **Shift**+**F12**.
18+
You can use the **Find All References** command to determine where particular code elements are referenced throughout your codebase. In the code editor, the **Find All References** command is available on the context (right-click) menu of the element you want to find references to. You can also select the element and then select **Shift**+**F12**.
1919

2020
The results appear in a tool window named **\<element> references**, where *element* is the name of the item you're searching for. A toolbar in the **references** window enables you to:
2121

docs/msbuild/errors/msb3189.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "MSB3189 diagnostic code"
33
description: Learn about the possible causes of the MSB3189 build error, and get troubleshooting tips.
4-
ms.date: 05/16/2025
4+
ms.date: 9/29/2025
55
ms.topic: "error-reference"
66
f1_keywords:
77
- MSB3189
@@ -32,6 +32,9 @@ This article describes the MSB3189 error code.
3232
<!-- MSB3189: The update location for this application is a local path. -->
3333

3434
<!-- :::editable-content name="postOutputDescription"::: -->
35+
## Description
36+
37+
This error is given when the ClickOnce **Install location** is not in one of the supported formats. The string must be a fully qualified URL or UNC (Universal Naming Convention) path, for example, "http://www.contoso.com/myapplication" or "\\server\myapplication." Local paths and mapped network drives are not supported. In the **Publish** wizard, the relevant path is specified on the **Install location** page, which also appears on the **Publish** tab after you run the wizard to create a publish profile. In the `.pubxml` file, the element is `InstallUrl`. See [Specify ClickOnce Publish properties](../../deployment/how-to-specify-where-visual-studio-copies-the-files.md).
3538
<!--
3639
{StrBegin="MSB3189: "}
3740
-->

docs/msbuild/item-element-msbuild.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Item Element (MSBuild)
33
description: Learn how MSBuild uses the Item element to contain a user-defined item and its metadata. Every item must be a child of an ItemGroup element.
4-
ms.date: 03/13/2017
4+
ms.date: 9/29/2025
55
ms.topic: reference
66
dev_langs:
77
- VB
@@ -36,7 +36,7 @@ Contains a user-defined item and its metadata. Every item that is used in an MSB
3636

3737
## Specify metadata as attributes
3838

39-
In MSBuild 15.1 or later, any metadata with a name that doesn't conflict with the current list of attributes can optionally be expressed as an attribute.
39+
You can specify item metadata as attributes for as child elements. Any metadata with a name that doesn't conflict with the current list of attributes can be expressed as an attribute.
4040

4141
For example, to specify a list of NuGet packages, you would normally use something like the following syntax.
4242

@@ -81,6 +81,8 @@ Now, however, you can pass the `Version` metadata as an attribute, such as in th
8181
|-------------|-----------------|
8282
|[ItemMetadata](../msbuild/itemmetadata-element-msbuild.md)|A user-defined item metadata key, which contains the item metadata value. There may be zero or more `ItemMetadata` elements in an item.|
8383

84+
MSBuild interprets child elements on item elements as item metadata.
85+
8486
### Parent elements
8587

8688
|Element|Description|

0 commit comments

Comments
 (0)