(Damir Arh) This tutorial gives an overview of all the new features in C# 8 which can be tried out using Visual Studio 2019.
Tag: Development
Webpack 4 Automatically Makes process.env.NODE_ENV Available In Your JavaScript
(Ben Nadel) To be honest, I don’t really understand how to use Webpack. In my Angular and Vue.js apps, I just borrow what I can from other examples; and then hack at it until something seems to “work.”
ASP.NET Core Security, Part 1
(Eric Vogel) To start my series on ASP.NET Core security, I’ll show how to set up authentication to register, log in and log out a user account in an ASP.NET Core MVC application
Adventures in .NET Core SDK Installation: Missing SDKs and 32 bit vs 64 bit
(Rick Strahl) Yesterday I ran into yet another .NET Core versioning problem, this time related around the .NET Core SDK installation.
C# 7.0 Feature: Tuples In C#
(Tapas Pal) A Tuple is a kind of ordered sequence of heterogeneous objects. Items in that sequence are either different or may be of the same type.
New Little Features in Visual Studio 2019
(Mads Kristensen and Robert Green) In this episode, Robert is joined by Mads Kristensen, who shows a number of his favorite new little features in Visual Studio 2019, all designed to make you more productive.
Hosting DI Container with .NET Core 3.0
(Christian Nagel) ASP.NET Core included the WebHost class that was used in the Main method to startup everything up – including the dependency injection container.
Using NgModel With Input Type=’File’ And A Custom ControlValueAccessor In Angular 7.2.12
(Ben Nadel) As I’ve been learning about how to upload files using the HttpClient service in Angular 7, one of the framework features that I’ve stumbled-over is the fact that, by default, the NgModel directive doesn’t play very nicely with the File-Input form control.
Pulling Objects from Web Services with ReadAsAsync
(Peter Vogel) In an earlier post, I discussed the three objects that Microsoft has provided for calling Web Services: HttpWebRequest, WebClient and HttpClient.
.NET Core Workers in Azure Container Instances
(Brady Gaster) In .NET Core 3.0 we are introducing a new type of application template called Worker Service. This template is intended to give you a starting point for writing long running services in .NET Core.