Staffan Gustafsson
Staffan Gustafsson
# PR Summary Adding a guard to SendModuleTelemetryMetric to avoid a NRE when accessing s_knownModules. ```csharp internal static void SendModuleTelemetryMetric(TelemetryType telemetryType, string moduleName, string moduleVersion = AnonymousVersion) { if (!CanSendTelemetry)...
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [X] Search the existing issues. -...
### Summary of the new feature / enhancement As a scriptwriter, I find it hard to name functions that download stuff. I struggle to come up with a verb to...
I would like to see classes shipping with PowerShell geared towards scripters implementing advanced functions. With common patterns I mean path processing, with or w/o globbing, Include/Exclude filtering, Progress management...
#4704 With this change, .net standard will still produce CS8618, but will at least not fail. The warning will need to be suppressed by other means.
The metamethod is probed in p1 (LHS) and, if not found in p1, p2 (RHS) in the C implementation. ```c static int call_binTM (lua_State *L, const TValue *p1, const TValue...
Would it be OK to modernize the supported frameworks? netcoreapp2.1, for example, is ancient, and so is net 4.5.1. Thoughts?
Fixing null checks in `ConvertPSObjectToMamlModel`. With the current behavior, new lines are added/removed every other run causing constant repository churn. # PR Summary Ensures that scalar null comparison is performed...
#269 Provide a base class, ArgumentCompleter, to simplify writing custom argument completers Some common tasks need to be done almost every time a completer is written. Things like quoting arguments...