Creating an Angular 7 App with ASP.NET Core(Link to the post)

This is basically a link to the original post which is published on Telerik blogs. Finally, we have a new major version of Angular, which is version 7. The reason I use the word “finally” is not just because people were waiting for the latest major release of Angular, but also because there were quite … Continue reading Creating an Angular 7 App with ASP.NET Core(Link to the post)

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

Disabling parts of ASP.NET Core Identity

Re-blogged from Damien’s site.

Software Engineering

This article shows how to disable parts of ASP.NET Core Identity in a Web Application. In the ASP.NET Core Identity, the Identiy UI is deployed as part of the NuGet package. So per default everything is enabled and you have to opt-out, unlike the older versions which was opt-in. If you are not careful, this could cause security holes in your application. It is important that you disable the parts of Identity which you do not use!

To demonstrate this, the register process will be disabled. Sometimes, the users are imported or defined using an existing application/process, and the application should not be allowed to register users, so it needs to be deactivated. Per default, it is added and needs to be removed. The default Register Razor Page can be reached at the following URL:

“App base URL”/Account/Register

To turn this off, you need to scaffolding the Razor Page into…

View original post 96 more words

KeyValue pipe in Angular 6.1

Note – You can find the source code of my sample application here. You can find all .Net core posts here. Angular 6.1 is recently announced with some interesting features. One of those features is, the key value pipe. Currently, there is not any straight forward way to iterate an object keys using ngfor in Angular I have seen … Continue reading KeyValue pipe in Angular 6.1

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

Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II

You can find my all .Net core posts here. In my previous post on the CLI tools, I explained how to create, restore, clean, build, run .Net Core application using latest CLI commands. You can find the post here. In this post, we will see how to create and publish Nuget packages using CLI commands. What is a Nuget … Continue reading Guide to Create and Publish Nuget packages using .Net Core CLI: .Net Core CLI Part II

Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I

.Net Core provides a new cross-platform tool-chain for developing .NET applications which are nothing but the .Net CLI tools. CLI tools are really powerful and easy to use, as a developer we should know how to use these commands. These commands would be very useful if you are looking for creating Continuous Integration(CI) and\or Continuous Deployment(CD). … Continue reading Guide to create and run .Net Core application using CLI Tools: .Net Core CLI Part I

GDPR in .Net Core: .Net Core Security Part VII

We know that GDPR is officially part of a law in Europe from 25th May 2018. There are some awesome enhancements shipped with .Net Core 2.1, one of them is support for GDPR. Let us see what are the things added for GDPR in .Net Core 2.1 What is GDPR? The General Data Protection Regulation (GDPR) (Regulation … Continue reading GDPR in .Net Core: .Net Core Security Part VII

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