Skip to content

Commit 87b714b

Browse files
TravisEz13adityapatwardhan
authored andcommitted
Add .stylecop to filetypexml and format it (#16025)
1 parent b1e9eab commit 87b714b

File tree

9 files changed

+26
-387
lines changed

9 files changed

+26
-387
lines changed

CHANGELOG/6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
work is required for Microsoft to continue to sign and release packages from the project as official Microsoft packages.
105105

106106
- Remove `PerformWSManPluginReportCompletion`, which was not used, from `pwrshplugin.dll` (#5498) (Thanks @bergmeister!)
107-
- Remove exclusion for hang and add context exception for remaining instances (#5595)
107+
- Remove exclusion for unresponsive condition and add context exception for remaining instances (#5595)
108108
- Replace `strlen` with `strnlen` in native code (#5510)
109109

110110
## [6.0.0-rc] - 2017-11-16

CHANGELOG/6.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@
428428
- Fix crash when terminal is reset (#6777)
429429
- Fix a module-loading regression that caused an infinite loop (#6843)
430430
- Further improve `PSMethod` to `Delegate` conversion (#6851)
431-
- Blacklist `System.Windows.Forms` from loading to prevent a crash (#6822)
431+
- Block list `System.Windows.Forms` from loading to prevent a crash (#6822)
432432
- Fix `Format-Table` where rows were being trimmed unnecessarily if there's only one row of headers (#6772)
433433
- Fix `SetDate` function in `libpsl-native` to avoid corrupting memory during `P/Invoke` (#6881)
434434
- Fix tab completions for hash table (#6839) (Thanks @iSazonov!)

CHANGELOG/6.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@
844844

845845
### Documentation and Help Content
846846

847-
- Replace ambiguous `hang` term (#7902, #7931) (Thanks @iSazonov!)
847+
- Replace ambiguous term (#7902, #7931) (Thanks @iSazonov!)
848848
- Updating incorrect example of `PowerShell.Create()` (#7926) (Thanks @1RedOne!)
849849
- Update `governance.md` (#7927) (Thanks @tommymaynard!)
850850
- Add `cURL` to the Bash users list in `README.md` (#7948) (Thanks @vmsilvamolina!)

CHANGELOG/7.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Move to .NET Core 3.1.202 SDK and update packages.
327327
- Skip null data in output data received handler to fix a `NullReferenceException` (#11448) (Thanks @iSazonov!)
328328
- Add `ssh` parameter sets for the parameter `-JobName` in `Invoke-Command` (#11444)
329329
- Adding `PowerShell Editor Services` and `PSScriptAnalyzer` to tracked modules (#11514)
330-
- Fix key exchange hang with `SecureString` for the `OutOfProc` transports (#11380, #11406)
330+
- Fix condition when key exchange stops responding with `SecureString` for the `OutOfProc` transports (#11380, #11406)
331331
- Add setting to disable the implicit `WinPS` module loading (#11332)
332332

333333
### General Cmdlet Updates and Fixes

src/System.Management.Automation/engine/CommandCompletion/CompletionCompleters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7652,7 +7652,7 @@ public PropertyNameCompleter()
76527652
/// <summary>
76537653
/// Initializes a new instance of the <see cref="PropertyNameCompleter"/> class.
76547654
/// </summary>
7655-
/// <param name="parameterNameOfInput">The name of the property of the input object for witch to complete with property names.</param>
7655+
/// <param name="parameterNameOfInput">The name of the property of the input object for which to complete with property names.</param>
76567656
public PropertyNameCompleter(string parameterNameOfInput)
76577657
{
76587658
_parameterNameOfInput = parameterNameOfInput;

tools/releaseBuild/azureDevOps/releaseBuild.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ pr:
1010
- master
1111
- release*
1212

13+
parameters:
14+
- name: ForceAzureBlobDelete
15+
displayName: Delete Azure Blob
16+
default: false
17+
1318
resources:
1419
repositories:
1520
- repository: ComplianceRepo
@@ -29,6 +34,9 @@ variables:
2934
value: $[format('{0:yyyyMMdd}-{1}', pipeline.startTime,variables['Build.SourceBranch'])]
3035
- name: branchCounter
3136
value: $[counter(variables['branchCounterKey'], 1)]
37+
- name: ForceAzureBlobDelete
38+
value: ${{ parameters.ForceAzureBlobDelete }}
39+
3240
stages:
3341
- stage: prep
3442
jobs:

tools/releaseBuild/azureDevOps/templates/compliance.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,11 @@ jobs:
8585
inputs:
8686
targetType: F
8787
optionsFC: 0
88-
optionsXS: 0
88+
optionsXS: 1
8989
optionsPE: '1|2|3|4'
9090
optionsHMENABLE: 0
9191
optionsRulesDBPath: '$(Build.SourcesDirectory)\tools\terms\PowerShell-Terms-Rules.mdb'
92-
optionsFTPATH: '$(Build.SourcesDirectory)\tools\terms\FileTypeSet.xml'
93-
toolVersion: 5.8.2.1
92+
optionsUEPath: $(Build.SourcesDirectory)\tools\terms\TermsExclusion.xml
9493
continueOnError: true
9594

9695
# add RoslynAnalyzers

0 commit comments

Comments
 (0)