appsettings.json gets IntelliSense

As announced by Microsoft recently, we can use IntelliSense with appsettings.json files. What are appsettings.json files? Common settings of the application are generally stored in appsetting.json files. These files are separated on the basis of environments. For example, the settings for production environment are stored in appsettings.production.json and the settings for acceptance environment are stored … Continue reading appsettings.json gets IntelliSense

Advertisement

First look at InferSharp: A C# version of Facebook’s Infer

https://fbinfer.com/ You might have heard about Infer which is a tool to detect bugs in Java and C/C++/Objective-C code before it ships. Infer belongs to Facebook and it is a static analysis tool to produce a list of potential bugs such as null pointer exceptions, resource leaks, annotation reachability, missing lock guards, and concurrency race conditions … Continue reading First look at InferSharp: A C# version of Facebook’s Infer

How does the built-in dependency injection work on ASP.NET Core?

PC: https://medium.com/net-core-dependency-injection/asp-net-core-dependency-injection-3aa993c2b583 Introduction Dependency Injection (DI) is a pattern that can help developers decouple the different pieces of their applications. DI provides a mechanism for the construction of dependency graphs independent of the class definitions. NET Core supports the DI software design pattern, which is a technique for achieving Inversion of Control (IoC, the “D” on the … Continue reading How does the built-in dependency injection work on ASP.NET Core?

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

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

Baby Monitor Chrome Extension – Streaming from Raspberry PI using SignalR and Cognitive Vision Service

SignalR Streaming is a latest addition to SignalR library and it supports sending fragments of data to clients as soon as it becomes available instead of waiting for all the data to become available. In this article, we will build a small app for baby monitoring to stream camera content from Raspberry PI using SignalR streaming. This tool … Continue reading Baby Monitor Chrome Extension – Streaming from Raspberry PI using SignalR and Cognitive Vision Service

Containerizing N-Tier MVC .Net Framework Application with Docker

Microservice Architecture and Containerization using docker are the latest buzzword in the software industry. But, Many people including me in the software industry developing big monolithic enterprise applications using .Net Framework for many years have very limited scope of applying these concepts into existing applications. Because, its not easy to break enterprise monolithic application into micro … Continue reading Containerizing N-Tier MVC .Net Framework Application with Docker