Nicholas Goodman

Results 10 comments of Nicholas Goodman

A somewhat outsider perspective - and playing the devil's advocate here - is what exactly is the pressing need to declare multiple schemas of the same object type within a...

So the `next-less` plugin is deprecated? If so, that should be clearly marked as such on the plugin's README: https://github.com/vercel/next-plugins/tree/master/packages/next-less I can put a PR there if the docs need...

@adamyonk - thanks. I will give it a try. I see that one mentioned up higher in the thread. Another friend of mine pointed me to https://github.com/solidzoro/next-plugin-antd-less which also appears...

Well several months after initially thinking this was going to be an issue and looking into various 3rd party solutions for this, we have simply decided to take on disabling...

@Mrc0113 Yes it is good to go. I wanted to point out we are not taking it all the way to .NET 6 to ensure compatibility with a number of...

> ⚠️ **There are mistakes in this implementation. Leaving it here as a reference, but do not use without reading on first...** Hello @mostofakamal, A workaround to enable `async` /...

Are you sure it will block the main request thread? By your wording, I'm guessing this is ASP.NET Core request handler (or perhaps something like an Event Hub callback) and...

Apologies for the spam of comments, but I just recalled that if this code is being invoked from an ASP.NET Core controller, then the `Task.Run(() => {})` calls are superfluous,...

So although it gets a little cumbersome, by writing your own version of a Solace session interface, you can do: ``` public interface ISessionEx : IDisposable { Task ConnectAsync(); event...

@mostofakamal Fair observation. I have taken the examples described in this discussion and placed them on my fork of the repo: https://github.com/nicholasdgoodman/solace-samples-dotnet/tree/f68b9c54bcea5305e641cff85b8d267f7b48eaf9 If you examine the file [SolaceExtensions.cs](https://github.com/nicholasdgoodman/solace-samples-dotnet/blob/f68b9c54bcea5305e641cff85b8d267f7b48eaf9/src/~Shared/SolaceSystems.Solclient.Async/SolaceExtensions.cs) you can...