Tag: Core

Technical

Create Blazor App using Visual Studio 2019

Blazor Introduction Blazor is a new .NET web framework that was released by Microsoft. In this article, I will walk through you to create a simple Blazor application using Visual Studio 2019. We can create both client-side Blazor app and server-side Blazor apps using Visual Studio 2019 which offers both the project templates. The Server-side […]

Technical

Cookie Authentication in ASP.NET CORE MVC Web Application

Authentication is the process of identifying the user that is who you are. Another related term is Authorization is this process of identifying whether you have authorized to access something in web it will be website pages. Authorization is the important module, most of the projects would not complete without covering this area.  Also, there […]

Technical

How to Create your First React Application with .NET Core in Visual Studio 2017 with Simple Example?

In this article, I have explained how to create your first react application with ASP.NET Core Web application in Visual Studio 2017 with default react.js template, also explained how to create a new react component. React application can be used to develop Single Page Applications (SPA). Follow the below steps to start creating on React […]

Technical

10 best practices to secure ASP.NET Core/MVC Web applications

In this article, you are going to walk through 10 best practices that everyone must consider in the security aspects while writing web applications in ASP.NET Core or MVC framework. These security vulnerabilities are common to all web applications. Below are the few major security vulnerabilities that can be exploited by hackers to gather information, […]

Technical

Visual Studio 2019 Updates

Microsoft has released Visual Studio 2019 version 16.3 recently. Key updates available in this version, .NET Core 3.0 Support C++ improvements Updates for Python TypeScript 3.6 support Download Link: You can download version 16.3 on visualstudio.com or update from the Visual Studio installer. Note: Microsoft have also released the first preview of Visual Studio 2019 […]

Technical

Migration to ASP.NET Core application from older versions

Refer the below article to migrate ASP.NET Core 2.2 to 3.0 https://docs.microsoft.com/en-us/aspnet/core/migration/22-to-30 Refer the below article to migrate ASP.NET Core 2.1 to 2.2 https://docs.microsoft.com/en-us/aspnet/core/migration/21-to-22 Refer the below article to migrate ASP.NET Core 2.0 to 2.1 https://docs.microsoft.com/en-us/aspnet/core/migration/20_21 Refer the below article to migrate ASP.NET Core 1.x to 2.0 https://docs.microsoft.com/en-us/aspnet/core/migration/1x-to-2x Refer the below article to migrate ASP.NET […]

Technical

Obsolete package references in ASP.NET Core 3.0

In Earlier versions of ASP.NET Core till v2.2, we used large number of NuGet packages to use some features. From ASP.NET v3.0 version, we don’t need to refer these NuGet references, instead these packages are available as a part of Microsoft.AspNetCore.App shared framework. No additional references are required. The shared framework is the set of […]

Technical

.NET Framework comes to end

Microsoft has decided to stop the new development for .NET Framework. .NET Framework 4.8 will be the last major version of .NET Framework.  There focus will be on .NET Core. With the .NET Core 3.0 release in September 2019, all new .NET applications should be based on .NET Core. If we have existing .NET Framework applications that we are maintaining, there is no need to […]

Back To Top