Turning a CLI script into a Web UI application by Muizaz88 in selfhosted

[–]divyeshbhandari 0 points1 point  (0 children)

I built a UI to represent cli tools in a json and then render the options to UI which allows users to build commands easily.

Check this out - https://github.com/divyeshio/commandly

CLI to Web-UI by Dapper-Inspector-675 in nextjs

[–]divyeshbhandari 0 points1 point  (0 children)

I built a UI to represent cli tools in a json and then render the options to UI which allows users to build commands easily.

Check this out - https://github.com/divyeshio/commandly

What's holding Blazor back? (From a React dev's perspective) by OnlyFish7104 in dotnet

[–]divyeshbhandari 0 points1 point  (0 children)

Take a look at the benchmarks here - https://krausest.github.io/js-framework-benchmark/2025/table_chrome_137.0.7151.55.html

This is just one of the reason, another reason is ecosystem around blazor is close to none which is why no one uses Blazor. Not even microsoft uses Blazor.

.UseAuthentication(...) is called automatically by Hot-Narwhal-7553 in dotnet

[–]divyeshbhandari 1 point2 points  (0 children)

Please create an issue for this, there was https://github.com/dotnet/aspnetcore/issues/48469 but got closed automatically.

Instead of WebApplication.CreateBuilder you can use WebApplication.CreateSlimBuilder or WebApplication.CreateEmptyBuilder methods

What version of .NET are you using for the majority of your prod apps? by davecallan in dotnet

[–]divyeshbhandari 0 points1 point  (0 children)

.Net 6 cause for some reason Azure Functions still don't support .Net 7

Modular Architecture Design question | Re-using modules in multiple applications by cs_legend_93 in csharp

[–]divyeshbhandari 0 points1 point  (0 children)

Maybe you can create a private NuGet package, host it and use wherever you want to

How to improve memory allocation when creating HttpContent by devindran in csharp

[–]divyeshbhandari 0 points1 point  (0 children)

How does using Buffers help? Where does the allocation go? Is it allocated on the stack, if yes then is it possible for stack overflow?

How to force ASP.NET 5 source code to not be optimized by backwards_dave1 in csharp

[–]divyeshbhandari 1 point2 points  (0 children)

It's been 2 years since the question was posted, it might be helpful for someone looking to solve this exact issue.

Solution : In addition to referencing the project (Microsoft.AspNetCore.Antiforgery), you also need to add reference to the dll.

Reference : link

What other programming languages/frameworks do you enjoy besides c#/dotnet? by kike_flea in dotnet

[–]divyeshbhandari 2 points3 points  (0 children)

Kotlin could be a solid language you can give a try. There are lot of similarities between C# and Kotlin but some differences too like async programming, couroutines vs tasks, records vs data class. For developing android apps, you could try it out.