Samuel Cragg
Samuel Cragg
I'm loving the work done under #401 to make the syntax for `ref`/`out` parameters much better, i.e. we can now say: ```C# var lookup = Substitute.For(); lookup.TryLookup("hello", out Arg.Any()) .Returns(true);...
Using the analyser with the new Span classes from [System.Memory](https://www.nuget.org/packages/System.Memory/) on .NET Core 2.1 and I'm getting warnings that the `Slice` method is not supported, yet the program does run....
Would you accept a PR to allow reading of custom types? ### Background In my app I often wrap primitive types in dedicated types to express exactly what they represent...
We have an issue where we're scanning the assemblies but certain types that implement an interface have to be registered as PerContainerLifetime. We got around it by scanning the assemblies...
Using the latest package from NuGet (3.4.0-beta-3) I'm getting a test-run element nested inside another test-run element (containing the same data) inside the TestResult.xml file. This is causing problems for...
Here's my initial attempt at solving #115 I've added a test case and manually verified the output, which looks like it's picked up the changes without effecting any other tests....
I've taken a stab at removing the `command-line-usage` package (as mentioned in #236), replacing it with a little bit of code inside the library that does the text wrapping. I...
Thanks for the great work on hereby - I was looking for something to replace gulp in a more modern stack and this fits the bill perfectly! I was taking...