Introduction This guide provides a step-by-step guide for dockerizing a .NET project . Dockerizing ensures consistent dependency versions and effortless cross-environment compatibility. It simplifies development and deployment processes significantly. Prerequisites...
Introduction Long running tasks are very common in an API application. Tasks like data synchronization, periodic updates and background processing can be done asynchronously. ASP.NET Core Hosted Service can be used to implement background tasks. Hosted Service was...