Showing results for ASP.NET Core - .NET Blog

Apr 12, 2018
0
0

ASP.NET Core 2.1.0-preview2 now available

Damian Edwards
Damian Edwards

Today we're very happy to announce that the second preview of the next minor release of ASP.NET Core and .NET Core is now available for you to try out. This second preview includes many refinements based on feedback we received from the first preview we released back in February. You can read about .NET Core 2.1.0-preview2 over on their blog. ...

ASP.NETASP.NET Core
Mar 22, 2018
4
0

Get started building .NET web apps that run in the browser with Blazor

Daniel Roth
Daniel Roth

For up to date instructions on how to get started with Blazor, please go to https://blazor.net. Today we released our first public preview of Blazor, a new experimental .NET web framework using C#/Razor and HTML that runs in the browser with WebAssembly. Blazor enables full stack web development with the stability, consistency, and productivity of...

ASP.NETASP.NET CoreBlazor
Mar 22, 2018
0
0

ASP.NET Core manageability and Application Insights improvements

Sergey Kanzhelev
Sergey Kanzhelev

There are many great investments on the ASP.NET Core 2.1 roadmap. These investments make ASP.NET Core applications easier to write, host, test, and make security and standards compliant. This blog post talks about areas of investments in manageability and monitoring space. It covers ASP.NET Core, .NET, and Application Insights SDK for ASP.NET Core ...

ASP.NETASP.NET Core
Mar 5, 2018
0
0

ASP.NET Core 2.1.0-preview1: Functional testing of MVC applications

Daniel Roth
Daniel Roth

For ASP.NET Core 2.1 we have created a new package, Microsoft.AspNetCore.Mvc.Testing, to help streamline in-memory end-to-end testing of MVC applications using . This package takes care of some of the typical pitfalls when trying to test MVC applications using TestServer. Create a test project To try out the new MVC test fixture, let'...

ASP.NETASP.NET Core
Mar 4, 2018
0
0

ASP.NET Core 2.1.0-preview1: GDPR enhancements

Barry Dorrans
Barry Dorrans

2018 sees the introduction of the General Data Protection Regulation, an EU framework to allow EU citizens to control, correct and delete their data, no matter where in the word it is held. In ASP.NET Core 2.1 Preview 1 we’ve added some features to the ASP.NET Core templates to allow you to meet some of your GDPR obligations, as well as a cookie “c...

ASP.NETASP.NET Core
Mar 2, 2018
8
0

ASP.NET Core 2.1.0-preview1: Introducing Identity UI as a library

Daniel Roth
Daniel Roth

ASP.NET Core has historically provided project templates with code for setting up ASP.NET Core Identity, which enables support for identity related features like user registration, login, account management, etc. While ASP.NET Core Identity handles the hard work of dealing with passwords, two-factor authentication, account confirmation, and other h...

ASP.NETASP.NET Core
Mar 1, 2018
0
0

ASP.NET Core 2.1.0-preview1: Razor UI in class libraries

Daniel Roth
Daniel Roth

One frequently requested scenario that ASP.NET Core 2.1 improves is building UI in reusable class libraries. With ASP.NET Core 2.1 you can package your Razor views and pages (.cshtml files) along with your controllers, page models, and data models in reusable class libraries that can be packaged and shared. Apps can then include pre-built UI compon...

ASP.NETASP.NET Core
Feb 28, 2018
0
0

ASP.NET Core 2.1.0-preview1: Improvements to IIS hosting

Sourabh Shirhatti [MSFT]
Sourabh Shirhatti [MSFT]

The ASP.NET Core Module (ANCM) is a global IIS module that has been responsible for proxying requests over from IIS to your backend ASP.NET Core application running Kestrel. Since 2.0 we have been hard at work to bring to two major improvements to ANCM: version agility and performance. Note, that in the 2.1.0-preview1 release,...

ASP.NETASP.NET Core
Feb 28, 2018
0
0

ASP.NET Core 2.1-preview1: Introducing HTTPClient factory

Glenn Condron [MSFT]
Glenn Condron [MSFT]

HttpClient factory is an opinionated factory for creating HttpClient instances to be used in your applications. It is designed to: 1. Provide a central location for naming and configuring logical HttpClients. For example, you may configure a client that is pre-configured to access the github API. 2. Codify the concept of outgoing middleware via ...

ASP.NETASP.NET Core
Feb 27, 2018
4
0

ASP.NET Core 2.1.0-preview1: Improvements for building Web APIs

Daniel Roth
Daniel Roth

ASP.NET Core 2.1 adds a number of features that make it easier and more convenient to build Web APIs. These features include Web API controller specific conventions, more robust input processing and error handling, and JSON patch improvements. Please note that some of these features require enabling MVC compatibility with 2.1, so be sure to check ...

ASP.NETASP.NET Core