Showing results for ASP.NET Core - .NET Blog

Apr 17, 2018
0
0

Blazor 0.2.0 release now available

Daniel Roth
Daniel Roth

Just a few weeks ago we announced the first preview release of an experimental web UI framework called Blazor. Blazor enables full-stack web development using C# and WebAssembly. So far thousands of web developers have taken on the challenge to try out Blazor and done some pretty remarkable things: The feedback and support from the communit...

ASP.NETASP.NET CoreBlazor
Apr 12, 2018
0
0

ASP.NET Core 2.1.0-preview2: Improvements to the Kestrel HTTP server

Sourabh Shirhatti [MSFT]
Sourabh Shirhatti [MSFT]

Change default transport to Sockets Building off the improvements to the managed sockets implementation in .NET Core we have changed the default transport in Kestrel from libuv to sockets. As a consequence, the  package is no longer part of the  metapackage. How to switch back to libuv To continue using libuv as your transport, you will need to ...

ASP.NETASP.NET Core
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