Joseph Musser

Results 95 issues of Joseph Musser

Unfortunately for this library, the closest thing to an active maintainer right now is me. When @OmerMor agreed to make me a maintainer, I fixed a significant ConfigureAwait bug (https://github.com/OmerMor/AsyncBridge/issues/7),...

For reference, this demonstrates the bug: https://github.com/jnm2/AsyncBridge/compare/sync_context_flow_bug This differs from the .NET Framework 4.5 behavior. Example of what can go wrong: ```cs // UI thread await Task.Run(async () => {...

bug
pri:low

Reporting entry point stack traces would make the test assertion message significantly more useful in the case where you aren't sure where or why you should be adding `AmbientTasks.WaitAllAsync();` to...

enhancement

It appears that I have to use this pattern: ```cs using (var conversionProgress = rewriteProgress.Spawn(1, "Converting Windows PDB to portable...")) { try { // Something that might throw } finally...

The original wording of the spec seems to disallow `obj?.MethodGroup` due to the combination of the following (thanks to @RikkiGibson for finding this): https://github.com/dotnet/csharplang/blob/main/spec/expressions.md#null-conditional-operator > If E0 is classified as...

type: future bug :rainbow:

When you distribute a framework-dependent app, it's necessary to give the users a URL to download the runtime if they don't have it already. The best link for this currently...

I'm not sure if this is a general issue with Roslyn, or whether there is anything the Scripty extension can do about it in the meantime, but it's significant discouragement...

Discussion/Question

(question from DevIntersection session) https://www.w3.org/TR/WCAG21/

@sharwell mentioned that the color of the links is hard to read. I've noticed that it hasn't been the most efficient for my eyes to scan. To follow accessibility guidelines,...

design