Andrew Nosenko

Results 51 comments of Andrew Nosenko

My concern is tools like `npm` (the latest one uses a PowerShell script). `npm start` spawns a child Node.js process, attached to the same console, then when Ctrl+C is pressed,...

@MatejKafka thanks for the tip, `[Console]::TreatControlCAsInput = $true` was the first thing I tried, by patching `C:\Program Files\nodejs\npm.ps1`. Sadly it works on the per-console level, not per-process level, so the...

@rhubarb-geek-nz, I guess I initially got confused by this part of [the docs](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_try_catch_finally?view=powershell-7.4#freeing-resources-using-finally): > A finally block runs even if you use CTRL+C to stop the script. A finally block...

@mklement0 > @noseratio, what, specifically, about the passage you quoted from the docs initially confused you (perhaps the docs need amending)? I think it'd be nice if the quoted part...

Affecting me too. It doesn't seem to be documented anywhere, but `observedAttributes` only works for attributes which are specified in lower case.

> The foundation package and fast-element all remain supported from this project. When I’m back at my computer I can find the PR with the description which is a bit...

My current take at patching `"C:\Program Files\nodejs\npm.ps1"`: https://github.com/npm/cli/pull/7458#issuecomment-2093920138

> @noseratio Have you looked into the nuget command line for your pipeline? https://docs.microsoft.com/en-us/nuget/reference/nuget-exe-cli-reference @champnic, IIUIC Nuget is good for getting the [`Microsoft.Web.WebView2` .NET package](https://www.nuget.org/packages/Microsoft.Web.WebView2), but not for installing the...

> The CI should still be able to deploy the runtime using the bootstrapper download link. Or are you trying to install specific versions? @champnic, yep, it'd be great to...