Showing category results for ASP.NET Core

Feb 27, 2018
Post comments count4
Post likes count0

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
Feb 27, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Introducing compatibility version in MVC

Glenn Condron [MSFT]
Glenn Condron [MSFT]

This post was written by Ryan Nowak In 2.1 we're adding a feature to address a long-standing problem for maintaining MVC - how do we make improvements to framework code without making it too hard for developers to upgrade to the latest version? This is not an easy concern to solve - and with 7 major releases of MVC (dating back to 2009) there are ...

ASP.NETASP.NET Core
Feb 27, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Getting started with SignalR

Andrew Stanton-Nurse
Andrew Stanton-Nurse

Since 2013, ASP.NET developers have been using SignalR to build real-time web applications. Now, with ASP.NET Core 2.1 Preview 1, we're bringing SignalR over to ASP.NET Core so you can build real-time web applications with all the benefits of ASP.NET Core. We released an alpha version of this new SignalR back in October that worked with ASP.NET Cor...

ASP.NETASP.NET CoreSignalR
Feb 27, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Using ASP.NET Core Previews on Azure App Service

Glenn Condron [MSFT]
Glenn Condron [MSFT]

There are 3 options to get ASP.NET Core 2.1 Preview applications running on Azure App Service: 1. Installing the Preview1 site extension 2. Deploying your app self-contained 3. Using Web Apps for Containers Installing the site extension Starting with 2.1-preview1 we are producing an Azure App Service site extension that contains everything yo...

ASP.NETASP.NET CoreAzure
Feb 27, 2018
Post comments count1
Post likes count1

ASP.NET Core 2.1.0-preview1: Improvements for using HTTPS

Daniel Roth
Daniel Roth

Securing web apps with HTTPS is more important than ever before. Browser enforcement of HTTPS is becoming increasingly strict. Sites that don't use HTTPS are increasingly labeled as insecure. Browsers are also starting to enforce that new and existing web features must only be used from an secure context (Chromium, Mozilla). New privacy requir...

ASP.NETASP.NET Core
Feb 27, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1 now available

Damian Edwards
Damian Edwards

Today we're very happy to announce that the first preview of the next minor release of ASP.NET Core and .NET Core is now available for you to try out. We've been working hard on this release over the past months, along with many folks from the community, and it's now ready for a wider audience to try it out and provide the feedback that will contin...

ASP.NETASP.NET Core
Feb 6, 2018
Post comments count2
Post likes count0

A new experiment: Browser-based web apps with .NET and Blazor

Daniel Roth
Daniel Roth

Today I’m excited to announce a new experimental project from the ASP.NET team called Blazor. Blazor is an experimental web UI framework based on C#, Razor, and HTML that runs in the browser via WebAssembly. Blazor promises to greatly simplify the task of building fast and beautiful single-page applications that run in any browser. It does this by ...

ASP.NETASP.NET CoreBlazor
Feb 2, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1 roadmap

Daniel Roth
Daniel Roth

Five months ago, we shipped ASP.NET Core 2.0 as a foundational release for our high performance, cross-platform web framework for .NET and .NET Core. Since then we have been hard at work to deliver the next wave of features in ASP.NET Core 2.1. Below is an outline of the features and improvements that are planned for this release, which is targeted...

ASP.NETASP.NET Core
Jan 9, 2018
Post comments count0
Post likes count0

64 bit ASP.NET Core on Azure App Service

Glenn Condron [MSFT]
Glenn Condron [MSFT]

When creating an Azure App Service .NET Core is already pre-installed. However, only the 32 bit .NET runtime is installed. In this post we will look at a  few ways that you can get a 64 bit runtime on Azure App Service During the 2.1 timeframe we are hoping to have both 32 and 64 bit runtimes installed as well as enabling the portal experience to ...

ASP.NETASP.NET CoreAzure
Dec 7, 2017
Post comments count1
Post likes count0

Testing ASP.NET Core MVC web apps in-memory

Daniel Roth
Daniel Roth

This post was written and submitted by Javier Calvarro Nelson, a developer on the ASP.NET Core MVC team Testing is an important part of the development process of any application. In this blog post we are going to explore how we can test ASP.NET Core MVC applications using an in-memory server. This approach has several advantages: The main...

ASP.NETASP.NET Core