Skip to content

Commit c00df97

Browse files
Merge pull request #10738 from MicrosoftDocs/main638817448507139435sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 1866257 + 6f3ee95 commit c00df97

8 files changed

+13
-11
lines changed

docs/deployment/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
author: ghogen
1212
ms.author: ghogen
1313
manager: mijacobs
14-
ms.date: 5/20/2024
14+
ms.date: 5/1/2025
1515

1616
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1717

docs/ide/how-to-sign-application-and-deployment-manifests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ helpviewer_keywords:
1313
- ClickOnce deployment [Visual Studio], signing assemblies
1414
- key files [Visual Studio]
1515
- assemblies [Visual Studio], signing
16-
author: ghogen
17-
ms.author: ghogen
16+
author: mikejo5000
17+
ms.author: mikejo
1818
manager: mijacobs
1919
---
2020
# Sign application and deployment manifests

docs/ide/managing-assembly-and-manifest-signing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ helpviewer_keywords:
99
- signing manifests [Visual Studio]
1010
- application manifests [Visual Studio]
1111
- assemblies [Visual Studio], signing
12-
author: ghogen
13-
ms.author: ghogen
12+
author: mikejo5000
13+
ms.author: mikejo
1414
manager: mijacobs
1515
---
1616
# Manage assembly and manifest signing

docs/ide/using-regular-expressions-in-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use regular expressions and review examples
33
description: Explore some regular expression characters, operators, constructs, and pattern examples that you can use in Visual Studio.
4-
ms.date: 01/11/2024
4+
ms.date: 5/1/2025
55
ms.topic: conceptual
66
f1_keywords:
77
- vsregularexpressionhelp
@@ -98,7 +98,7 @@ For more information about named capture groups, see [Named matched subexpressio
9898
| Pattern | Description |
9999
| - | - |
100100
| `int ([_A-Za-z][_A-Za-z0-9]*)` | Match single integer definitions. Identifiers begin with one uppercase or lowercase letter, followed by zero or more (indicated by `*`) letters or numbers. The identifier is captured as `$1` by the outer parentheses. |
101-
| `(private|internal|public)*\s*([\w]+\s+)int\s+([_A-Za-z][_A-Za-z0-9]*)\s+=\s+[+-]+(\d)+` | Match C# integer declarations that are initialized to integer literals, capturing the various parts, including the access level, modifiers like `const` or `static`, the identifier, and the defined value. Note the use of `\s+` for at least one whitespace character, or `\s*` if whitespace might or might not occur. |
101+
| `(private\|internal\|public)*\s*([\w]+\s+)int\s+([_A-Za-z][_A-Za-z0-9]*)\s+=\s+[+-]+(\d)+` | Match C# integer declarations that are initialized to integer literals, capturing the various parts, including the access level, modifiers like `const` or `static`, the identifier, and the defined value. Note the use of `\s+` for at least one whitespace character, or `\s*` if whitespace might or might not occur. |
102102
| `foreach\s*\(([\w\d]*)\s+([\w\d]*)\s+in\s+(.*)\)` | Match the opening line of a `foreach` loop. The literal parentheses are escaped with backslash (`\`). The various groups are captured as `$1`, `$2`, and `$3` by the unescaped parentheses. |
103103
| `#define\s+([_A-Za-z][_A-Za-z0-9]*)` | Matches `#define` definitions (without the value, if any). The defined token is stored in `$1`. |
104104
| `#include\s+["<](.*)[">]` | Match includes in a C++ source file. |

docs/msbuild/evaluate-items-and-properties.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ If you don't specify a target on the command line by using the `-target` option,
3636

3737
If you specify `-getTargetResult`, any targets requested are automatically built, as if you specified them with `-target`, along with any other targets you requested.
3838

39+
Be aware that properties are evaluated before items, so if you're using `-getProperty` for a property that references an item, you get a different output depending on whether or not you're getting the result before or after item evaluation occurs. For example, if you use `-getProperty` without using the `-target` option (or `-getTargetResult`), then you get the property value without item evaluation, but if you do specify `-targets` (or `-getTargetResult`), then you get the final result after item evaluation. See [How MSBuild builds projects](build-process-overview.md).
40+
3941
You can use these commands with `MSBuild.exe` or with `dotnet build`, or other `dotnet` commands such as `dotnet publish`. See [MSBuild command-line reference](msbuild-command-line-reference.md) and [dotnet command](/dotnet/core/tools/dotnet).
4042

4143
If you use `-getProperty` to request a single property, the output is emitted as a string of text. That means you can easily consume the value in scripting scenarios, or within a more complex command line.

docs/msbuild/how-to-exclude-files-from-the-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Exclude Files from the Build
33
description: Discover how to explicitly exclude or conditionally include files from builds for MSBuild project files with attributes and wildcards.
4-
ms.date: 05/15/2024
4+
ms.date: 05/1/2025
55
ms.topic: how-to
66
helpviewer_keywords:
77
- MSBuild, wildcards
@@ -76,7 +76,7 @@ If you're using wildcards to include all the files in one directory or a nested
7676

7777
`Exclude` is not actually an item operation; it can't be used by itself, but only as a modifier for `Include`.
7878

79-
### To include all `.cs` or `*.vb` files except `Form2`
79+
### To include all `.cs` or `.vb` files except `Form2`
8080

8181
- Use one of the following `Include` and `Exclude` attributes:
8282

docs/msbuild/how-to-extend-the-visual-studio-build-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Extend and customize the build process
33
description: Explore several ways you can modify the build process so you can control and customize how your projects build, including overriding properties.
4-
ms.date: 05/16/2024
4+
ms.date: 5/1/2025
55
ms.topic: how-to
66
helpviewer_keywords:
77
- MSBuild, overriding predefined targets

docs/msbuild/target-build-order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Set the run order for MSBuild targets
33
description: Specify the order in which MSBuild targets run and whether the input to one target depends on the output of another target.
4-
ms.date: 05/15/2024
4+
ms.date: 5/1/2025
55
ms.topic: how-to
66
helpviewer_keywords:
77
- msbuild, build order

0 commit comments

Comments
 (0)