Samuel Steele
Samuel Steele
I recently encountered the need to support cancellation in my CLI, and wanted to share my solution/workaround. In my case, `SIGINT/SIGTERM` would terminate the cli process, but some background work...
Excuse my extreme fashion, I'm quite late. I've found that this exception occurs when [`NavigationManager.Initialize`](https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Components/Components/src/NavigationManager.cs#L174) is invoked by the [`StaticComponentRenderer`](https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Mvc/Mvc.ViewFeatures/src/RazorComponents/StaticComponentRenderer.cs#L78), due to the `ViewContext.HttpContext.Request` not containing the url data needed...
@xobust Following up on this to let you know that I've addressed the issue on my [`v6-proposal` fork](https://github.com/Cryptoc1/CoreRcon/tree/v6-proposal), as well as #3, but I also got carried away and kind...
@adegeo would it make sense to have separate "SDK Dependencies" and "Runtime Dependencies" lists?
@adegeo I'm not quite following... Per [Sdk#51677](https://github.com/dotnet/sdk/issues/51677), if a command like `dotnet build` produces an error because a library that is expected to be installed is not installed, then I...
Here is example output of the error (which occurred when building/publishing a BlazorWASM project): ``` Restore complete (0.5s) Determining projects to restore... Restored /home/cryptoc1/Developer/temp/temp.csproj (in 134 ms). temp net10.0 browser-wasm...
Am receiving this error on an arch based system.
Does `execstack` have to be invoked on the target machine to be effective? If not, a straight-forward fix may be to invoke `execstack` during CI build?
Am receiving this error on an arch based system.
Bumping this, as I agree that an `Upsert` operation should only return `false` when the underlying document hasn't been mutated. Coming from EF Core, where `SaveChanges` returns an `int` of...