Coby Caldwell
Coby Caldwell
Just looked at it - that module isn't doing anything special, it is just calling the `Import-Module` command, as such: [if (-not (Import-Module -Name PowerShellGet -MinimumVersion 1.6.0 -PassThru -ErrorAction SilentlyContinue))...
Looks like @guyomog78 has the right idea. This seems to be the way that other projects have solved this, just hardcoding the GUIDs: DSC AuditPolicyDSC: https://github.com/dsccommunity/AuditPolicyDsc#AuditPolicyGuid , https://github.com/dsccommunity/AuditPolicyDsc/blob/03bd14a560be01a50222f1dfad739c914043b124/DSCResources/AuditPolicyResourceHelper/AuditPolicyResourceHelper.psm1#L249 Microsoft reference:...
I don't disagree with this, but I am having a hard time finding out exactly how the Ansible project has been handling localizations; I'm not seeing a whole lot of...
The root cause is pretty simple - the output path is defined here: https://github.com/PowerShell/PSScriptAnalyzer/blob/33d927857f6e8493a77ec34c3ca4328eca8ee5d8/build.psm1#L380 But is not passed to Pester here: https://github.com/PowerShell/PSScriptAnalyzer/blob/33d927857f6e8493a77ec34c3ca4328eca8ee5d8/build.psm1#L388 Looking at this, https://github.com/PowerShell/PSScriptAnalyzer/pull/1444 , it seems we've...
@SteveL-MSFT This has been open for a while. Any chance you can shed some light on what icon Microsoft thinks should be included here for Powershell?
I think PSScriptAnalyzer needs this. From my perspective, we should support several common formats - something like NUnitXML, JUnitXML, and Checkstyle (common output for Linters in other languages). For large...