Skip to main content
Add or Enable Serilog in ASP.NET Core 7.0

Shorts Series – Add or Enable Serilog in ASP.NET Core 7.0

Serilog is a third-party, open-source structured logging library. It provides diagnostic logging to files, the console, and elsewhere. It is easy to set up, has a clean API, and is portable between recent .NET platforms. In the ASP.NET Core framework, Serilog has emerged as a popular logging library due to its flexibility, extensibility, and ease of use. In continuation with Shorts Series, here is a another very short post to add or enable Serilog in ASP.NET Core 7.0 application.

Read More

Shorts Series – Add or Enable OData in ASP.NET Core 7.0

In today’s world, where videos have become increasingly shorter and gained immense popularity through platforms like YouTube Shorts, Insta Reels, and TikTok, why shouldn’t blog posts follow suit? I’m considering launching a series of brief blog posts that you can read and finish in less than one minute. Here is a very short post to add or enable OData in ASP.NET Core 7.0 application.

Read More

Mastering Visual Studio 2022: Essential Tips and Tricks

Visual Studio 2022 is the latest iteration of Microsoft’s powerful integrated development environment (IDE). Packed with an array of features and improvements, it offers developers a robust platform to streamline their coding workflow and enhance productivity. In this blog post, we will share Visual Studio 2022 tips and tricks to help you make the most out of Visual Studio 2022, enabling you to write code more efficiently and effectively.

Read More

Troubleshooting Common Errors and Issues in .NET 7.0

Earlier I posted about what’s new in ASP.NET Core 7.0 but at the same time the release of a new version of the .NET framework brings exciting features and improvements to the development experience. However, like any software release, there can be occasional errors and issues that developers may encounter while working with .NET 7.0. In this blog post, we will explore some common errors and issues that you may come across when using .NET 7.0 and provide troubleshooting tips to help you overcome them effectively.

Read More

What’s New in ASP.NET Core 7

ASP.NET Core 7 is a significant update for the open-source cross-platform framework for building modern web applications. The new version comes packed with a lot of exciting features and improvements that enhance the development experience and performance. In this blog post, we will discuss some of the most significant changes in ASP.NET Core 7.

Read More

How Safe is the Cloud? What Businesses Need to Know

Who remembers the bad old days when businesses had to store all their data on site? It could be pretty risky. What if the office burned down, or the server failed? Plus, connecting to that data from remote locations, while possible, was clumsy and slow. Then, along came the cloud, and voila! Everything became easy. Maybe, it even became too easy! Think of all that data just “floating around.” Do you even know where it is? Could it be accessed by bad actors? Could it be lost or hijacked?

Cloud safety is an issue that should make businesses sit up and take note. And if they don’t, they stand to leave loopholes that could prove extremely damaging to their reputations or even their ability to do business at all.

Read More

Clean way to add Startup class in ASP.NET Core 6

If you are following ASP.NET Core 6, then probably you are aware that with ASP.NET Core 6.0 projects, there is no Startup.cs file. It is now combined with Program.cs file to bring unified experience. I posted about How to Add Startup.cs in ASP.NET Core 6 Project and this approach brings Startup.cs class in the project in a traditional way that we have today with ASP.NET Core 5 and it’s prior version. But what if we can improve things and make it better. Well, in this post, let’s take a look at a clean way to add Startup class in ASP.NET Core 6 projects.

Read More