James Foster

Results 18 comments of James Foster

I believe this is fixed in the latest version. Please let me know if it's not.

Will be released in version 4.0.0

Yes, as @markdakers says, `IgnoreProperty` takes a predicate which allows you to ignore any property on any type. For clarity: ```c# results.WithDeepEqual(expected) .IgnoreProperty(p => p.DeclaringType == typeof(MyType) && p.Name ==...

Thanks for the report. Fixed in 4.0.0

This is definitely a major bug. If I get time this weekend I’ll look into it.

checkout the following link for the dotless implementation of hsla as well as other color manipulation functions. http://github.com/chrisjowen/nLess/blob/master/src/dotless.Test/Spec/Functions/FunctionFixture.cs

I don't know if this is a hint, but from the stack trace it's in "Dismissible Drawer" while I'm using a "Modal" drawer.

What you ideally want is some way to explicitly define the transform pipeline. ``` Web.config +-Web.config.pipeline ``` ``` xml $(SolutionDir)Web.$(Configuration).config Web.$(Configuration).config Web.$(Configuration).config.user ``` This would perform those 3 xml transforms...

Hi, I'm getting the same error. My swagger set up is taken from the example projects. Asp.Versioning.Mvc: 6.2.1 Asp.Versioning.Mvc.ApiExplorer: 6.2.1 Swashbuckle.AspNetCore: 6.4.0 Target Framework: net6.0 ```csharp [Route("/v{apiVersion}")] [ApiVersion("2.0")] public class...