Containerize Your .NET 7.0 Web Application With Docker

Containerize Your .NET 7.0 Web Application With Docker

Dockerizing is the process of packing, deploying, and running applications using Docker containers. Docker is very popular among the developers. In this post, I am going to show you “Containerize Your .NET 7.0 Web Application With Docker”. for local development. Before that, I will briefly explain what is docker and .NET What Is Docker? Docker is an open source tool that combines your application with all the necessary dependencies and libraries as one portable package (docker image)....

August 25, 2023 · 6 min · 1085 words · Prakash Bhandari
How to Embed a Json File in a .Net Assembly

How to Embed a Json File in a .Net Assembly?

Before directly jump into the implementation. It is better to understand what is assembly and why sometimes we need to embed files like text, json etc. in the assembly. What is an assembly within the .NET framework? As a new .NET programmer, understanding assembly can be very difficult. If you go to Microsoft documentation, you will find the following definition of a web assembly: An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality....

August 20, 2023 · 4 min · 647 words · Prakash Bhandari