Database migration for .Net Core projects

You can find my all .Net core posts here. I am adding new post after a long break because I recently joined a new company AttachingIt. It is an awesome security related company and now-on wards I am going to work on this awesome product. In this post, I will explain how to do the Database migration for … Continue reading Database migration for .Net Core projects

Continuous Integration(CI) for .Net Core projects: .Net Core CLI Part III

You can find my all .Net core posts here. This is the 3rd post on .Net Core CLI commands. You can find first 2 posts below: Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II In this … Continue reading Continuous Integration(CI) for .Net Core projects: .Net Core CLI Part III

Create an application with Angular 6 and .Net Core: Step by step guide

Angular 6 is announced recently which has introduced some pretty awesome features. Let us see how to create Angular 6 application with and without using .Net Core SPA templates using Visual Studio 2017. There are more than one ways to create Angular 6 application with .Net Core, Let us see some of them. Make sure you … Continue reading Create an application with Angular 6 and .Net Core: Step by step guide

API Versioning in .Net Core

You can find my all .Net core posts here. In this post, we will see how to use different options for versioning in .Net Core API projects. Versioning API is very important and it should be implemented in the API project. Let us see how to achieve this in .Net Core. prerequisite: Visual studio 2017 community edition, download … Continue reading API Versioning in .Net Core

Steps to add new field with Code first approach in .Net Core

You can find all .Net core posts here. I have written a post on Code first approach with .Net Core which you can find here. In above post, I have not covered adding an additional new field in the model and migrate it to the database using Code first approach. Let us see that scenario in this … Continue reading Steps to add new field with Code first approach in .Net Core

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

Step by step setup for the Auth server and the client: IdentityServer4 with .Net Core Part II

Note – You can find the source code of my sample application here. (Note that the code may contain extra code, concentrate on Auth Server and client for now) You can find all .Net core posts here. In my previous post on IdentityServer4, I explained the basics of IdentityServer4 which you can find here. In this post, we … Continue reading Step by step setup for the Auth server and the client: IdentityServer4 with .Net Core Part II

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

IdentityServer4 in simple words: IdentityServer4 with .Net Core Part I

You can find all .Net core posts here. Once I explored and wrote about Authentication in .Net Core using Identity here, many people have asked me to explore and write on IdentityServer4. So I am starting a series of posts in which I will mainly concentrate on IdentityServer4 In this first post, we will see some … Continue reading IdentityServer4 in simple words: IdentityServer4 with .Net Core Part I

Secure .Net Core applications from the Open Redirect attacks: .Net Core security Part IV

You can find my all .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 secure your .Net Core application from the Open Redirect attack. What is Open Redirection attack? Open Redirection attack is a URL Redirection. An Open Redirection attack is a kind … Continue reading Secure .Net Core applications from the Open Redirect attacks: .Net Core security Part IV