-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[release/v7.5.6] Build, package, and create VPack for the PowerShell-LTS store package within the same msixbundle-vpack pipeline (#150)
#27240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
daxian-dbw
merged 2 commits into
PowerShell:release/v7.5.6
from
daxian-dbw:backport/release/v7.5.6/27209-073f4d61b
Apr 9, 2026
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -329,6 +329,219 @@ | |||||
| <data name="shrOperatorDescription" xml:space="preserve"> | ||||||
| <value>Shift Right bit operator. Inserts zero in the left-most bit position. For signed values, sign bit is preserved.</value> | ||||||
| </data> | ||||||
| <data name="NameHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string] | ||||||
| Specifies the name of the property being created.</value> | ||||||
| </data> | ||||||
| <data name="LabelHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string] | ||||||
| Specifies the name of the property being created.</value> | ||||||
| </data> | ||||||
| <data name="ExpressionHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[scriptblock] | ||||||
| A script block used to calculate the value of the new property.</value> | ||||||
| </data> | ||||||
| <data name="AlignmentHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string] | ||||||
| Define how the values are displayed in a column. | ||||||
| Valid values are 'left', 'center', or 'right'.</value> | ||||||
| </data> | ||||||
| <data name="FormatStringHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string] | ||||||
| Specifies a format string that defines how the value is formatted for output.</value> | ||||||
| </data> | ||||||
| <data name="WidthHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[int] | ||||||
| Specifies the maximum column width in a table when the value is displayed. | ||||||
| The value must be greater than 0.</value> | ||||||
| </data> | ||||||
| <data name="DepthHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[int] | ||||||
| The depth key specifies the depth of expansion per property.</value> | ||||||
| </data> | ||||||
| <data name="AscendingHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[bool] | ||||||
| Specifies the order of sorting for one or more properties.</value> | ||||||
| </data> | ||||||
| <data name="DescendingHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[bool] | ||||||
| Specifies the order of sorting for one or more properties.</value> | ||||||
| </data> | ||||||
| <data name="LogNameHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[String[]] | ||||||
| Specifies the log names to get events from. | ||||||
| Supports wildcards.</value> | ||||||
| </data> | ||||||
| <data name="ProviderNameHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[String[]] | ||||||
| Specifies the event log providers to get events from. | ||||||
| Supports wildcards.</value> | ||||||
| </data> | ||||||
| <data name="PathHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[String[]] | ||||||
| Specifies file paths to log files to get events from. | ||||||
| Valid file formats are: .etl, .evt, and .evtx</value> | ||||||
| </data> | ||||||
| <data name="KeywordsHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[Long[]] | ||||||
| Selects events with the specified keyword bitmasks. | ||||||
| The following are standard keywords: | ||||||
| 4503599627370496: AuditFailure | ||||||
| 9007199254740992: AuditSuccess | ||||||
| 4503599627370496: CorrelationHint | ||||||
| 18014398509481984: CorrelationHint2 | ||||||
| 36028797018963968: EventLogClassic | ||||||
| 281474976710656: ResponseTime | ||||||
| 2251799813685248: Sqm | ||||||
| 562949953421312: WdiContext | ||||||
| 1125899906842624: WdiDiagnostic</value> | ||||||
| </data> | ||||||
| <data name="IDHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[int[]] | ||||||
| Selects events with the specified event IDs.</value> | ||||||
| </data> | ||||||
| <data name="LevelHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[int[]] | ||||||
| Selects events with the specified log levels. | ||||||
| The following log levels are valid: | ||||||
| 1: Critical | ||||||
| 2: Error | ||||||
| 3: Warning | ||||||
| 4: Informational | ||||||
| 5: Verbose</value> | ||||||
| </data> | ||||||
| <data name="StartTimeHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[datetime] | ||||||
| Selects events created after the specified date and time.</value> | ||||||
| </data> | ||||||
| <data name="EndTimeHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[datetime] | ||||||
| Selects events created before the specified date and time.</value> | ||||||
| </data> | ||||||
| <data name="UserIDHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string] | ||||||
| Selects events generated by the specified user. | ||||||
| This can either be a string representation of a SID or a domain and username in the format DOMAIN\USERNAME or USERNAME@DOMAIN</value> | ||||||
| </data> | ||||||
| <data name="DataHashtableKeyDescription" xml:space="preserve"> | ||||||
| <value>[string[]] | ||||||
| Selects events with any of the specified values in the EventData section.</value> | ||||||
| </data> | ||||||
|
||||||
| </data> | |
| </data> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LabelHashtableKeyDescriptionduplicates theNameHashtableKeyDescriptiontext (“Specifies the name…”). This looks like a copy/paste error and will show incorrect help text for theLabelhashtable key in tab completion; update it to describe the label/display name semantics instead of the property name.