Antão Almada

Results 16 comments of Antão Almada

Hi @Baccanno Thank you for your feedback. Hyperlinq is not drag&drop in several cases. `IEnumerable` collections have to be converted to `IValueEnumerable` and `IReadOnlyCollection` collections have to be converted to...

@kevinoid You're solution is great! I'm trying to use it but Coveralls is giving me 0% coverage. Running coverlet from the command line, I can see that the coverage.info contains...

I'm porting my project from using [Uno.SourceGeneration](https://github.com/unoplatform/Uno.SourceGeneration) to the new source generators. Uno outputs the generated files exactly as [proposed for source generators](https://github.com/dotnet/roslyn/blob/master/docs/features/source-generators.md#output-files) and I'm missing it.

@danielcrenna I added the following to the beginning of my `Execute()`: ``` csharp // create a folder to serialize the generated source for debugging string? generatedPath = null; #if DEBUG...

I actually prefer this implementation but want to use some other contracts from Open Zeppelin. I run into this same issue. Are you planning to upgrade to 0.8.*?

I submitted a PR upgrading to `react 18` and using `craco-antd`: #307

@nZeus I switched to [ILRepack](https://github.com/gluck/il-repack) with [ILRepack.MSBuild.Task](https://github.com/peters/ILRepack.MSBuild.Task). https://github.com/aalmada/bonsai/blob/d396a981cbee3cfdf34197f8b3b0aafaa6b29f8b/Bonsai/Bonsai.csproj#L144

If I install only the ReactiveUI.Fody 2.0.65 package, NuGet states that will install Fody 1.13.0. The project compiles but, when I execute, it crashes because of a missing method. If...

Looks like Fody doesn't support .NET Standard: https://github.com/Fody/Fody/issues/280

I'm developing for this communication device for people diagnosed with ALS, aka Lou Gehrig's disease: http://myeyespeak.com/ I'm using ReactiveUI for both the gaze-tracking service and the text-to-speech app but I...