Christian Liberto

Results 11 comments of Christian Liberto

> I tried both the original code snippet with single ", but then found out that I apparently have to double the quotes in PowerShell, but that didn't not help...

Quite a few of your concerns with ListView can be eliminated by using ItemsControl instead (no hover effect etc). Pretty much the only remaining thing is the limit to a...

Can someone provide a full example of the Webpack code? I'm not sure I understand it correctly. I tried to add the code like this: ``` gulp.task("min:css", gulp.series(["sass"], function ()...

I have the same problem as @angrave (same version of Docker).

I just figured out the problem: The max-file value needs to be a string (max-file: "10"). Then it works as expected!

If you want the old behavior you can use `$PSNativeCommandArgumentPassing = "Legacy"`. See [Passing arguments that contain quote characters](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing?view=powershell-7.4#passing-arguments-that-contain-quote-characters)

But yq does some really weird stuff when using `--%`: ``` .\yq_windows_amd64.exe --% --verbose -n '.test = "something"' ``` prints ``` 08:16:49 processArgs [DEBU] processed args: ['.test = "something"'] 08:16:49...

We would like to note that one other place where an IOException is caught where it probably shouldn't be is https://github.com/dotnet/aspnetcore/blob/57c3104f0d19bb9e25b8ba75b422e2d6072e1dd5/src/Antiforgery/src/Internal/DefaultAntiforgeryTokenStore.cs#L69-L74 In our case this behavior lead to HTTP 400...

Yes that is what I'm looking for, I assumed this project would be the right place for it given its name and the fact that it already combines FluentAssertion with...

@jnyrup Thanks for the idea, I did not consider that. This will work as a workaround until there might be a better solution :).