There is no .NET Core 5.0, everything now comes under one umbrella, which is .NET 5 (A Major Release). The idea is to bring all .NET runtimes into a single .NET platform with unified base class libraries (BCL) for all kinds of application like ASP.NET Core, Windows Forms, WPF, Blazor, Xamarin etc. This move now makes .NET a unified platform for all types of .NET applications. If you are working with ASP.NET Core 3.1 app, and planning to upgrade the app to .NET 5 then it’s very easy to upgrade ASP.NET Core Web 3.1 app to ASP.NET Core 5.
Read More
Tag: Visual Studio 2019
ASP.NET Core 5 – Enabling Razor runtime compilation
Razor files (.cshtml) are compiled at both build and publish time and this gives better performance as your views are compiled. We can also enable runtime compilation, which will help developers to see any modified view change in real-time, without starting the application again. The recent version of ASP.NET Core (ASP.NET Core 5.0) Preview 2 came out and you can start building an app on ASP.NET Core 5.0 framework. ASP.NET Core 5.0 changes this experience for enabling razor runtime compilation. This is now available as an option while creating the ASP.NET Core 5.0 project. It’s a tiny enhancement, but good to know. Read More
Bind Select DropDown List in Angular 8
Angular 8.0 is out and earlier I posted about creating an Angular 8 app with Visual Studio 2019, which will help you to get started with Angular 8. In this post, we’ll see how to bind select dropdown list in Angular 8 app by extending the same app. Read More
How to create an Angular 8 app with Visual Studio 2019
Angular 8.0 is out and so Visual Studio 2019 with .NET Core 3.0. With the recent preview release of .NET Core 3.0, the Angular SPA template for ASP.NET Core 3.0 has now been updated to use Angular 8. So you no longer have to install any third-party templates to create an Angular 8 based app. This post talks about how to create an Angular 8 App with Visual Studio 2019.
Read More
Visual Studio 2019 Tips and Tricks for More Productivity
In case you missed it, the recently launched Visual Studio 2019 comes with a number of handy new features to help developers become more productive. Mastering these new components, along with the integrated development environment already wide array of features, serves as a great advantage for anyone looking to advance in the programming industry. Read More
ASP.NET Core 3.0 App with .NET Core 3.0 preview 2 release
Earlier I posted about creating First ASP.NET Core 3.0 App using Visual Studio 2019 Preview 1 release. ASP.NET Core 3.0 is a major release and has some code breaking changes. However, .NET Core 3.0 preview 1 release didn’t offer any insight of the new features. Recently, .NET Core 3.0 preview 2 came out and now we can get a feel of ASP.NET Core 3.0 new features. In this post, let’s create a new ASP.NET Core 3.0 app with .NET Core 3.0 preview 2 release and take a look at the new features. Read More
Visual Studio 2019 Preview 2 release new features
Earlier I posted about creating First ASP.NET Core 3.0 App using Visual Studio 2019 Preview 1 release. Recently, Visual Studio 2019 Preview 2 was released with a couple of new features and lots of bug fixes. This short post talks about Visual Studio 2019 Preview 2 release new features related to the project file handling and running a console application. Read More