Ian Griffiths

Results 23 comments of Ian Griffiths

To demonstrate the viability of what I'm proposing, I've created a spike showing the basic idea at https://github.com/reactiveui/ReactiveUI/pull/3556 I'm not proposing we merge that in its current state. It's mainly...

Since the only changes to this repo in the last 4 years have been dependency updates (almost entirely driven by dependabot) or tweaks to the .NET Foundation logo and some...

As far as I can tell, there are no releases available (not even preview builds) on NuGet that include this bug fix. Will you be making a new release available...

A related but different issue is that there didn't seem to be any support for non-core adapters (i.e., the kind of adapter that has been around for years, used outside...

As with #152, the general rule is that if we don't support a message type it's because we don't have real world examples of them. > Unclear to me if...

Type 27 is "Long-range automatic identification system broadcast message", right? We have tests for that in the `ais-dotnet` project. (That's the source for for the `Ais.Net` library by the way....

I've opened this in draft mode because I don't yet know whether you would like https://github.com/SpecFlowOSS/SpecFlow/issues/2575 to be implemented. That's the only reason I'm looking to add this. If you...

Here's a hacky sort of a workaround: ```cs var theorem = from t in ctx.NewTheorem() where t.a == t.b where t.a > 4 where t.b < 2 where t.solved ==...

Although we maintain this library, I don't actually have in depth knowledge of Z3, so I'm not entirely sure whether this is a feature available in Z3 that we can...

The title proposes one particular solution but there's another way composition of settings could conceivably work: ```cs public class WriteDatabaseSettings { [IncludeSettings] public LoggingSettings Logging { get; init; } [IncludeSettings]...