Skip to main content

Create a Trimmed Self-Contained Single Executable in .NET Core 3.0

A self-contained app is a great way to share your application as all components, runtime, and framework are included with the application. All you have to provide is the application .exe file without worrying about the presence of framework or runtime installation status on other machines. .NET Core 3.0 Preview 6 is out and there are a lot more new features. One of the useful feature is the introduction of PublishTrimmed flag. This flag reduces the size of the executable to a great extent and create a trimmed self-contained single executable in .NET Core 3.0.
Read More

Add Authentication to Angular 7 App using ASP.NET Core 3

.NET Core 3.0 Preview 3 was released last month, and it includes a bunch of new updates to ASP.NET Core. There are a couple of updates related to Angular. In this new update, the default Angular template is updated to Angular 7 and the option to add authentication while creating an Angular or React application. In this post, we’ll see how to create an Angular 7 app with Visual Studio 2019 and add authentication to Angular 7 App using ASP.NET Core 3.
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

Creating First ASP.NET Core 3.0 App with Visual Studio 2019 Preview

The first public preview of Visual Studio 2019 and .NET Core 3.0 is out. I expect both to be a major release with lots of new features and some code breaking changes. The biggest change with .NET Core 3.0 is support for desktop applications and ASP.NET Core 3.0 will only run on .NET Core. In this post, we’ll see how to install .NET Core 3.0 and Visual Studio 2019 preview, new features of visual studio 2019 and also creating first ASP.NET Core 3.0 app with Visual Studio 2019. Read More

.NET Core 3.0 announced: Welcome .NET Core for windows desktop applications

.NET Core 3.0 was announced yesterday at the Microsoft Build event and let’s welcome .NET Core supports for Windows Desktop applications. Finally, this is happening as developers were asking for desktop applications with .NET Core. The highlight of .NET Core 3 is support for Windows desktop applications, specifically Windows Forms, Windows Presentation Framework (WPF), and UWP XAML. You will be able to run new and existing Windows desktop applications on .NET Core and enjoy all the benefits that .NET Core has to offer. Read More