Skip to content

🩹 [Patch]: Crypto operations are faster after Sodium dependency upgrade to 2.2.5#124

Draft
Marius Storhaug (MariusStorhaug) wants to merge 3 commits into
mainfrom
sodium-update-perf
Draft

🩹 [Patch]: Crypto operations are faster after Sodium dependency upgrade to 2.2.5#124
Marius Storhaug (MariusStorhaug) wants to merge 3 commits into
mainfrom
sodium-update-perf

Conversation

@MariusStorhaug

@MariusStorhaug Marius Storhaug (MariusStorhaug) commented Jul 23, 2026

Copy link
Copy Markdown
Member

Bumping the Sodium dependency from 2.2.2 to 2.2.5 brings substantial per-operation performance improvements to every Set-Context and Get-Context call with no API changes required. Backward compatibility with existing vault data is confirmed by an automated cross-version test.

Changed: Significantly lower crypto overhead per context operation

Sodium 2.2.3–2.2.5 delivered incremental perf wins across the three operations Context calls on every vault read/write.

Improvements in Sodium itself (from release notes, Windows x64):

Operation Sodium 2.2.2 Sodium 2.2.5 Δ
New-SodiumKeyPair -Seed (key derivation) ~94.9 µs ~48.8 µs −49%
ConvertFrom-SodiumSealedBox (decrypt) ~196.3 µs ~109.0 µs −44%
ConvertTo-SodiumSealedBox (encrypt) ~135.8 µs ~105.4 µs −22%
Cold module import ~66.7 ms ~42.3 ms −37%

Measured in Context with Sodium 2.2.5 (500 iterations, tests/Context.Benchmark.ps1):

Scenario Median Min
New-SodiumKeyPair -Seed 111.4 µs 102.8 µs
Set-Context (seal + disk write) 12 074 µs 9 927 µs
Get-Context (disk read + decrypt) 3 304 µs 2 853 µs

Set-Context/Get-Context totals include disk I/O; the crypto fraction is captured in the key-derivation row.

Changed: Fail-fast input validation

ConvertFrom-SodiumSealedBox now rejects sealed payloads shorter than 48 bytes with a clear ArgumentException before reaching native interop.

Changed: Backward compatibility confirmed — no breaking changes

tests/Context.CrossVersionCompat.ps1 verifies the on-disk contract across the version boundary:

Check Result
New-SodiumKeyPair -Seed produces byte-identical keys in 2.2.2 and 2.2.5 ✅ PASS
Sealed box written by Sodium 2.2.2 is decryptable by Sodium 2.2.5 ✅ PASS
Vault files created by Context 8.1.3 (Sodium 2.2.2) are fully readable via Sodium 2.2.5 key derivation ✅ PASS
[SECURESTRING] prefixed values preserved across version boundary ✅ PASS
Null field values preserved across version boundary ✅ PASS

All 9 assertions pass.

Technical Details

  • Updated #Requires -Modules @{ ModuleName = 'Sodium'; RequiredVersion = '2.2.2' } to '2.2.5' in Get-Context.ps1 and Set-Context.ps1.
  • Public API is fully backward-compatible. Existing callers are unaffected.
  • Notable new capability (not yet used): -PublicKey on ConvertFrom-SodiumSealedBox is now optional — the public key can be derived internally from -PrivateKey via crypto_scalarmult_base. Future refactoring of Get-ContextVaultKeyPair could leverage this to avoid storing the public key separately.
  • Added tests/Context.Benchmark.ps1 for reproducible per-operation timing.
  • Added tests/Context.CrossVersionCompat.ps1 for on-disk contract verification across Sodium version boundaries.
  • All 52 existing Pester tests pass (29 Context + 23 ContextVaults).
Related issues

Sodium 2.2.5 delivers significant performance improvements with no
breaking API changes. Key gains since 2.2.2:
- ConvertFrom-SodiumSealedBox: -44% per-call overhead (196 -> 109 µs)
- ConvertTo-SodiumSealedBox: -22% per-call overhead (136 -> 105 µs)
- New-SodiumKeyPair -Seed: -49% per-call overhead (95 -> 49 µs)
- Module cold import: -37% (67 ms -> 42 ms)

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Measures median µs per iteration for the three hot paths:
New-SodiumKeyPair seed derivation, Set-Context (seal), and
Get-Context (open/decrypt). Script is self-contained, cleans
up after itself, and outputs a formatted table plus objects
for downstream capture.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
@github-actions

Copy link
Copy Markdown

Super-linter summary

Language Validation result
CHECKOV Pass ✅
GITHUB_ACTIONS Pass ✅
GITLEAKS Pass ✅
GIT_MERGE_CONFLICT_MARKERS Pass ✅
MARKDOWN Pass ✅
NATURAL_LANGUAGE Pass ✅
POWERSHELL Fail ❌
PRE_COMMIT Pass ✅
SPELL_CODESPELL Pass ✅
TRIVY Pass ✅
YAML Pass ✅

Super-linter detected linting errors

For more information, see the GitHub Actions workflow run

Powered by Super-linter

POWERSHELL

�[32;1mRuleName                           �[0m�[32;1m Severity    �[0m�[32;1m ScriptName�[0m�[32;1m Line �[0m�[32;1m Message�[0m
�[32;1m--------                           �[0m �[32;1m--------    �[0m �[32;1m----------�[0m �[32;1m---- �[0m �[32;1m-------�[0m
PSAvoidUsingEmptyCatchBlock         Warning      Context.Be 58    Empty catch b
                                                 nchmark.ps       lock is used.
                                                 1                 Please use W
                                                                  rite-Error or
                                                                   throw statem
                                                                  ents in catch
                                                                   blocks.
PSAvoidUsingEmptyCatchBlock         Warning      Context.Be 106   Empty catch b
                                                 nchmark.ps       lock is used.
                                                 1                 Please use W
                                                                  rite-Error or
                                                                   throw statem
                                                                  ents in catch
                                                                   blocks.
PSAvoidUsingWriteHost               Warning      Context.Be 63    File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSAvoidUsingWriteHost               Warning      Context.Be 108   File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSAvoidUsingWriteHost               Warning      Context.Be 109   File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSProvideCommentHelp                Information  Context.Be 33    The cmdlet 'M
                                                 nchmark.ps       easure-Median
                                                 1                Microseconds'
                                                                   does not hav
                                                                  e a help comm
                                                                  ent.
PSUseConsistentIndentation          Warning      Context.Be 71    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 72    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 73    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 74    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 75    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 76    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 83    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 84    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 85    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 86    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 87    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 88    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 96    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 97    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 98    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 99    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 100   Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 101   Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseSingularNouns                  Warning      Context.Be 33    The cmdlet 'M
                                                 nchmark.ps       easure-Median
                                                 1                Microseconds'
                                                                   uses a plura
                                                                  l noun. A sin
                                                                  gular noun sh
                                                                  ould be used
                                                                  instead.

Two-part test confirms the on-disk contract is fully preserved:
- Part 1: New-SodiumKeyPair -Seed produces byte-identical keys in
  both Sodium versions; a sealed box from 2.2.2 is decryptable by 2.2.5.
- Part 2: vault files written by Context 8.1.3 (Sodium 2.2.2) are
  correctly decrypted using Sodium 2.2.5 key derivation directly,
  including SecureString-prefixed values and null fields.

All 9 assertions pass.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
@github-actions

Copy link
Copy Markdown

Super-linter summary

Language Validation result
CHECKOV Pass ✅
GITHUB_ACTIONS Pass ✅
GITLEAKS Pass ✅
GIT_MERGE_CONFLICT_MARKERS Pass ✅
MARKDOWN Pass ✅
NATURAL_LANGUAGE Pass ✅
POWERSHELL Fail ❌
PRE_COMMIT Pass ✅
SPELL_CODESPELL Pass ✅
TRIVY Pass ✅
YAML Pass ✅

Super-linter detected linting errors

For more information, see the GitHub Actions workflow run

Powered by Super-linter

POWERSHELL

�[32;1mRuleName                           �[0m�[32;1m Severity    �[0m�[32;1m ScriptName�[0m�[32;1m Line �[0m�[32;1m Message�[0m
�[32;1m--------                           �[0m �[32;1m--------    �[0m �[32;1m----------�[0m �[32;1m---- �[0m �[32;1m-------�[0m
PSAvoidUsingEmptyCatchBlock         Warning      Context.Be 58    Empty catch b
                                                 nchmark.ps       lock is used.
                                                 1                 Please use W
                                                                  rite-Error or
                                                                   throw statem
                                                                  ents in catch
                                                                   blocks.
PSAvoidUsingEmptyCatchBlock         Warning      Context.Be 106   Empty catch b
                                                 nchmark.ps       lock is used.
                                                 1                 Please use W
                                                                  rite-Error or
                                                                   throw statem
                                                                  ents in catch
                                                                   blocks.
PSAvoidUsingWriteHost               Warning      Context.Be 63    File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSAvoidUsingWriteHost               Warning      Context.Be 108   File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSAvoidUsingWriteHost               Warning      Context.Be 109   File 'Context
                                                 nchmark.ps       .Benchmark.ps
                                                 1                1' uses Write
                                                                  -Host. Avoid
                                                                  using Write-H
                                                                  ost because i
                                                                  t might not w
                                                                  ork in all ho
                                                                  sts, does not
                                                                   work when th
                                                                  ere is no hos
                                                                  t, and (prior
                                                                   to PS 5.0) c
                                                                  annot be supp
                                                                  ressed, captu
                                                                  red, or redir
                                                                  ected. Instea
                                                                  d, use Write-
                                                                  Output, Write
                                                                  -Verbose, or
                                                                  Write-Informa
                                                                  tion.
PSProvideCommentHelp                Information  Context.Be 33    The cmdlet 'M
                                                 nchmark.ps       easure-Median
                                                 1                Microseconds'
                                                                   does not hav
                                                                  e a help comm
                                                                  ent.
PSUseConsistentIndentation          Warning      Context.Be 71    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 72    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 73    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 74    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 75    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 76    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 83    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 84    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 85    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 86    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 87    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 88    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 96    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 97    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 98    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 99    Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 100   Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseConsistentIndentation          Warning      Context.Be 101   Indentation n
                                                 nchmark.ps       ot consistent
                                                 1
PSUseSingularNouns                  Warning      Context.Be 33    The cmdlet 'M
                                                 nchmark.ps       easure-Median
                                                 1                Microseconds'
                                                                   uses a plura
                                                                  l noun. A sin
                                                                  gular noun sh
                                                                  ould be used
                                                                  instead.


�[32;1mRuleName                           �[0m�[32;1m Severity    �[0m�[32;1m ScriptName�[0m�[32;1m Line �[0m�[32;1m Message�[0m
�[32;1m--------                           �[0m �[32;1m--------    �[0m �[32;1m----------�[0m �[32;1m---- �[0m �[32;1m-------�[0m
PSAvoidUsingEmptyCatchBlock         Warning      Context.Cr 218   Empty catch b
                                                 ossVersion       lock is used.
                                                 Compat.ps1        Please use W
                                                                  rite-Error or
                                                                   throw statem
                                                                  ents in catch
                                                                   blocks.
PSAvoidLongLines                    Warning      Context.Cr 217   Line exceeds
                                                 ossVersion       the configure
                                                 Compat.ps1       d maximum len
                                                                  gth of 150 ch
                                                                  aracters
PSAvoidUsingPositionalParameters    Information  Context.Cr 134   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 135   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 136   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 137   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 208   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 209   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 210   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingPositionalParameters    Information  Context.Cr 211   Cmdlet 'Asser
                                                 ossVersion       t-Equal' has
                                                 Compat.ps1       positional pa
                                                                  rameter. Plea
                                                                  se use named
                                                                  parameters in
                                                                  stead of posi
                                                                  tional parame
                                                                  ters when cal
                                                                  ling a comman
                                                                  d.
PSAvoidUsingWriteHost               Warning      Context.Cr 37    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 40    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 41    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 42    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 49    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 52    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 57    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 58    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 59    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 60    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 67    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 89    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 90    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 92    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 93    File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 127   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 128   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 129   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 130   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 131   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 133   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 142   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 143   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 175   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 176   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 177   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 178   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 207   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 215   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 222   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 224   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 225   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSAvoidUsingWriteHost               Warning      Context.Cr 227   File 'Context
                                                 ossVersion       .CrossVersion
                                                 Compat.ps1       Compat.ps1' u
                                                                  ses Write-Hos
                                                                  t. Avoid usin
                                                                  g Write-Host
                                                                  because it mi
                                                                  ght not work
                                                                  in all hosts,
                                                                   does not wor
                                                                  k when there
                                                                  is no host, a
                                                                  nd (prior to
                                                                  PS 5.0) canno
                                                                  t be suppress
                                                                  ed, captured,
                                                                   or redirecte
                                                                  d. Instead, u
                                                                  se Write-Outp
                                                                  ut, Write-Ver
                                                                  bose, or Writ
                                                                  e-Information
                                                                  .
PSProvideCommentHelp                Information  Context.Cr 34    The cmdlet 'A
                                                 ossVersion       ssert-Equal'
                                                 Compat.ps1       does not have
                                                                   a help comme
                                                                  nt.
PSProvideCommentHelp                Information  Context.Cr 46    The cmdlet 'A
                                                 ossVersion       ssert-Null' d
                                                 Compat.ps1       oes not have
                                                                  a help commen
                                                                  t.
PSUseConsistentWhitespace           Warning      Context.Cr 28    Use space bef
                                                 ossVersion       ore and after
                                                 Compat.ps1        binary and a
                                                                  ssignment ope
                                                                  rators.
PSUseConsistentWhitespace           Warning      Context.Cr 29    Use space bef
                                                 ossVersion       ore and after
                                                 Compat.ps1        binary and a
                                                                  ssignment ope
                                                                  rators.
PSUseConsistentWhitespace           Warning      Context.Cr 30    Use space bef
                                                 ossVersion       ore and after
                                                 Compat.ps1        binary and a
                                                                  ssignment ope
                                                                  rators.
PSUseConsistentWhitespace           Warning      Context.Cr 42    Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 134   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 134   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 135   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 136   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 137   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 208   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 208   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 209   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 209   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 211   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 211   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 212   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseConsistentWhitespace           Warning      Context.Cr 212   Use only 1 wh
                                                 ossVersion       itespace betw
                                                 Compat.ps1       een parameter
                                                                   names or val
                                                                  ues.
PSUseDeclaredVarsMoreThanAssignment Warning      Context.Cr 180   The variable
s                                                ossVersion       'contextFiles
                                                 Compat.ps1       Json' is assi
                                                                  gned but neve
                                                                  r used.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

⬆️ [Dependency]: Bump Sodium from 2.2.2 to 2.2.5 for performance improvements

1 participant