10000 Add .stylecop to filetypexml and format it by TravisEz13 · Pull Request #16025 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Add .stylecop to filetypexml and format it #16025

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
merged 8 commits into from
Sep 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG/6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
work is required for Microsoft to continue to sign and release packages from the project as official Microsoft packages.

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

## [6.0.0-rc] - 2017-11-16
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG/6.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
- Fix crash when terminal is reset (#6777)
- Fix a module-loading regression that caused an infinite loop (#6843)
- Further improve `PSMethod` to `Delegate` conversion (#6851)
- Blacklist `System.Windows.Forms` from loading to prevent a crash (#6822)
- Block list `System.Windows.Forms` from loading to prevent a crash (#6822)
- Fix `Format-Table` where rows were being trimmed unnecessarily if there's only one row of headers (#6772)
- Fix `SetDate` function in `libpsl-native` to avoid corrupting memory during `P/Invoke` (#6881)
- Fix tab completions for hash table (#6839) (Thanks @iSazonov!)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG/6.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@

### Documentation and Help Content

- Replace ambiguous `hang` term (#7902, #7931) (Thanks @iSazonov!)
- Replace ambiguous term (#7902, #7931) (Thanks @iSazonov!)
- Updating incorrect example of `PowerShell.Create()` (#7926) (Thanks @1RedOne!)
- Update `governance.md` (#7927) (Thanks @tommymaynard!)
- Add `cURL` to the Bash users list in `README.md` (#7948) (Thanks @vmsilvamolina!)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG/7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ Move to .NET Core 3.1.202 SDK and update packages.
- Skip null data in output data received handler to fix a `NullReferenceException` (#11448) (Thanks @iSazonov!)
- Add `ssh` parameter sets for the parameter `-JobName` in `Invoke-Command` (#11444)
- Adding `PowerShell Editor Services` and `PSScriptAnalyzer` to tracked modules (#11514)
- Fix key exchange hang with `SecureString` for the `OutOfProc` transports (#11380, #11406)
- Fix condition when key exchange stops responding with `SecureString` for the `OutOfProc` transports (#11380, #11406)
- Add setting to disable the implicit `WinPS` module loading (#11332)

### General Cmdlet Updates and Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7652,7 +7652,7 @@ public PropertyNameCompleter()
/// <summary>
/// Initializes a new instance of the <see cref="PropertyNameCompleter"/> class.
/// </summary>
/// <param name="parameterNameOfInput">The name of the property of the input object for witch to complete with property names.</param>
/// <param name="parameterNameOfInput">The name of the property of the input object for which to complete with property names.</param>
public PropertyNameCompleter(string parameterNameOfInput)
{
_parameterNameOfInput = parameterNameOfInput;
Expand Down
8 changes: 8 additions & 0 deletions tools/releaseBuild/azureDevOps/releaseBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ pr:
- master
- release*

parameters:
- name: ForceAzureBlobDelete
displayName: Delete Azure Blob
default: false

resources:
repositories:
- repository: ComplianceRepo
Expand All @@ -29,6 +34,9 @@ variables:
value: $[format('{0:yyyyMMdd}-{1}', pipeline.startTime,variables['Build.SourceBranch'])]
- name: branchCounter
value: $[counter(variables['branchCounterKey'], 1)]
- name: ForceAzureBlobDelete
value: ${{ parameters.ForceAzureBlobDelete }}

stages:
- stage: prep
jobs:
Expand Down
5 changes: 2 additions & 3 deletions tools/releaseBuild/azureDevOps/templates/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,11 @@ jobs:
inputs:
targetType: F
optionsFC: 0
optionsXS: 0
optionsXS: 1
optionsPE: '1|2|3|4'
optionsHMENABLE: 0
optionsRulesDBPath: '$(Build.SourcesDirectory)\tools\terms\PowerShell-Terms-Rules.mdb'
optionsFTPATH: '$(Build.SourcesDirectory)\tools\terms\FileTypeSet.xml'
toolVersion: 5.8.2.1
optionsUEPath: $(Build.SourcesDirectory)\tools\terms\TermsExclusion.xml
continueOnError: true

# add RoslynAnalyzers
Expand Down
Loading
0