Event Sourcing in .NET Core – part 1: A gentle introduction

Event sourcing, aka “the great myth”. I’ve been thinking about writing a series of articles about this for a while, and now it’s time to put my hands back on the keyboard. I thought that with all this bull**it pandemic at least I could have had more time to write on this blog but it … Continue reading Event Sourcing in .NET Core – part 1: A gentle introduction

.Net 5.0 : The future of .Net

In my previous post I added links to get the archived presentations and sessions for .Net Conf 2019 which you can find here. In this quick post we will see what is long term .Net release schedule and what is the near future of .Net. .Net Core 3.0 .Net Core 3.0 is current major release … Continue reading .Net 5.0 : The future of .Net

Archive for .Net Conf 2019 presentations and sessions

You might have followed .Net Conf which is one of the biggest conferences for Microsoft technology stacks. I wrote a small post for .Net Conf before few days which you can find here. Even though you might have followed some sessions from .Net Conf, it is very tough to catch all the sessions as they … Continue reading Archive for .Net Conf 2019 presentations and sessions

Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

You can find all .Net core posts here. In this quick post, we will see how to create an exe from .Net Core console application. Little background When we create a console application using .Net Core, you will notice that the exe would not be created when you build the application. Let us quickly create an application … Continue reading Generate an exe for the .Net Core console apps: .Net Core Quick posts part 5

How I resolved the error ‘The reference assemblies for framework “v4.5.1” were not found’: My DevOps journey

Nowadays I am experimenting a lot to implement CI\CD for all our .Net projects along with BitBucket(Git), Jenkins, Sonar, Fortify, Visual Studio 2017 tools, Artifactory, Dev cloud, VMs, Docker and many more. I will post some series of detailed posts for the same in future but just wanted to share the resolution for an error which … Continue reading How I resolved the error ‘The reference assemblies for framework “v4.5.1” were not found’: My DevOps journey

Read config data in .Net Core Test project: .Net Core quick posts part IV

In this post, we will see how to read configuration data in .Net Core Test project. We always need some configurable data which we can change once the application is deployed. Things are bit changed in .Net Core for reading the configuration. Let us see how to do it. prerequisite: Visual studio 2017 community edition, download here … Continue reading Read config data in .Net Core Test project: .Net Core quick posts part IV

Global Authorization Filter in .Net Core: .Net Core Security Part – V

You can find all of my  .Net core posts here. In these series of posts, we will see how to secure your .Net Core applications. In this post, we will see how to add the Authorize globally in your .Net Core application. Let us assume we need to add Authorize filter globally which means we are no more require to … Continue reading Global Authorization Filter in .Net Core: .Net Core Security Part – V

Solution for the error “Cannot find compilation library location for package ‘Microsoft.Win32.Registry” : .Net Core Errors Part II

You can find all .Net core posts here. .Net Core was introduced in last few months and people has started adopting it. In this series of post, I will put some frequent errors during .Net Core development and some important topics for the Core. In this post we will see how to resolve the error: InvalidOperationException: Cannot … Continue reading Solution for the error “Cannot find compilation library location for package ‘Microsoft.Win32.Registry” : .Net Core Errors Part II

Validate the model state globally in .Net Core MVC: .Net Core Quick posts

You can find all of my  .Net core posts here. In this post, we will see an awesome feature of .Net Core which will make the developer's life bit easy. We are talking about the Auto-validation of the models in .Net Core. I remember putting ModelState.IsValid check in almost all POST, PUT, DELETE etc action methods of … Continue reading Validate the model state globally in .Net Core MVC: .Net Core Quick posts