Stephen Cleary

Results 149 comments of Stephen Cleary

Alternative workaround, which I prefer over rooting: 1. Give one (or more) of your devices a reserved DHCP address, e.g., `192.168.0.231`. 2. On your other devices, update the addresses field...

Did some research this morning, and it seems to me that the best way forward is to adopt the [tailscale workaround](https://github.com/tailscale/tailscale-android/pull/21/files), which uses the higher-level APIs recommended by the Android...

> Can't be directly translated, as there's no declaration in the statement. This would be quite useful. I'd love to be able to use using declarations with discards.

I'm also running into this. `ActivatorUtilities.CreateInstance` does have [a concept of "better match" for constructors](https://github.com/dotnet/aspnetcore/blob/c925f99cddac0df90ed0bc4a07ecda6b054a0b02/src/Shared/ActivatorUtilities/ActivatorUtilities.cs#L71); however, that matching logic *only* compares [the number of explicitly-provided arguments](https://github.com/dotnet/aspnetcore/blob/c925f99cddac0df90ed0bc4a07ecda6b054a0b02/src/Shared/ActivatorUtilities/ActivatorUtilities.cs#L332), not the number of...

Seems like a binding redirect problem. Changing the binding redirect to `oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0"` should work fine. Binding redirect issues are not a problem with the library. I could update the...

I hear that; we *finally* got the go-ahead to do a .NET Core conversion this year, and I'm looking forward to getting that done. But we transitioned to SDK-style csproj...

`CompletedSynchronously` was my first thought as well. However, that cannot be the whole story because the alternative solution also uses a `Task` implementation of `IAsyncResult`, which has `CompletedSynchronously` set to...

Thanks for letting me know! The repo URL and source link were working previously, but I did change the packaging scripts before the last release and I likely broke something....

Thanks; the file in question actually lives here, though: https://github.com/StephenCleary/Templates

If this does move forward, please also add: - Exposing APIs for managing dead-letter queues. With some solutions, it can be hard to even figure out what the DLQ is...