Reureu
Reureu
@arthurschreiber , I think @Enceradeira has got a valid point there. Would you mind checking his PR? Kind regards, Reureu
Hi @stevenaw , Thanks for your reply. `Has.Count.GreaterThan(n)` would be too easy! ;-) * `Has.Count` does not work with Arrays. * `Has.Length` does not work with Lists. We've got LINQ...
Hi @rprouse, I understand your point, but the problem is not about comparing 2 objects. It's perfectly sensible to provide a custom comparer, and it is what I did. As...
As a workaround, you can call `msiexec /i ALLUSERS=1 INSTALLDIR="C:\Program Files\ILSpy"` from an elevated command prompt.
@John0King Useless to say, `` was a placeholder for the MSI-filename in my previous post. If msiexec displays its help box, it's because it hasn't been called properly. If that's...
@John0King , I'm under the impression that the properties you've specified cannot be parsed properly for some reason. If I try this: `msiexec /i ILSpy_Installer_8.2.0.7535-x64.msi ALLUSERS=1 INSTALLDIR=C:\Program Files\ILSpy` then I...
@John0King , Gosh! I hadn't even paid attention to your Powershell prompt! :eyeglasses: It's not exactly a bug of Powershell. It's merely due to the way parameters are passed to...
I reckon this bug is resolved in Cake.PowerShell 4.0.0, same as #95. All you need to do is add Cake.PowerShell 4.0.0 as add-in with dependencies. ``` #addin nuget:?package=Cake.Powershell&version=4.0.0&loaddependencies=true ``` The...
Hi there! That's an interesting bug and it would be great if someone could solve it for good. But it might not be an easy one. I have created a...
This bug seems to be resolved with Cake.PowerShell 4.0.0. All you need to do is add Cake.PowerShell 4.0.0 as add-in with dependencies. ``` #addin nuget:?package=Cake.Powershell&version=4.0.0&loaddependencies=true ``` The `&loaddependencies=true` is required!