Jeff Ward

Results 120 comments of Jeff Ward

> @aktxyz Thanks, glad you like it. > > Anything in particular you would use it for? Still very much looking for feedback on how to apply this concept. Personally...

I don't know if that will work. The issue is that `byte` can implement IComparable, but with `byte[]` it is an array, rather than a value type like `int` -...

> Couldn't you just omit `modelBuilder.ConfigureNames` and set `SetNamingScheme` of `EnumLookupOptions`? I will give that a go and see, I think the reason why I did that was either because:...

> > I configured it wrong and did not understand the API... > > Understandable... you should consider `ConfigureEnumLookup` and `ConfigureNames` as two different things. First one will create enum...

I have just seen this a year later. Nice work! I don't have Pull Request rights. I will try to contact the main developer for this and see if we...

@MilleBo - Is there a way we can get in contact and chat about Testura? Feel free to add me on Discord if you have a Discord account My Discord:...

No I don't have any Fluent Builder for that, most of my builders are to generate code itself, like methods, or attributes, or things like: ```csharp this.Property => someValue; ```...

> Whilst I agree the usings don’t need to be valid, there doesn’t seem to be an easy way to add aNuGet package using Roslyn. You would have to download...

I also use this quite often https://github.com/daveaglick/Buildalyzer > Buildalyzer lets you run MSBuild from your own code and returns information about the project. By default, it runs a [design-time build](https://daveaglick.com/posts/running-a-design-time-build-with-msbuild-apis)...

I think this is a great idea. Here is the PR for it: https://github.com/Testura/Testura.Code/pull/101 It will go out in the next release once it is merged 😄 Great suggestion @SeanFarrow...