Sourabh Shirhatti [MSFT]

Program Manager, .NET Team

I work on .NET, ASP.NET Core, and gRPC. UT Austin Alumnus and Bengaluru native

Post by this author

ASP.NET Core 2.2.0-preview1: Open API Analyzers & Conventions

What is it? Open API (alternatively known as Swagger) is a language-agnostic specification for describing REST APIs. The Open API ecosystem has tools that allows for discovering, testing and producing client code using the specification. Support for generating and visualizing Open API documents in ASP.NET Core MVC is provided via community ...

ASP.NET Core 2.2.0-preview1: HTTP/2 in Kestrel

As part of the 2.2.0-preview1 release, we’ve added support for HTTP/2 in Kestrel. What is HTTP/2? HTTP/2 is a major revision of the HTTP protocol. Some of the notable features of HTTP/2 are support for header compression and fully multiplexed streams over the same connection. While HTTP/2 preserves HTTP’s semantics (HTTP headers, methods...

ASP.NET Core 2.2.0-preview1 now available

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 ...

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

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...

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

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 ...

Development time IIS support for ASP.NET Core Applications

With a recent update to Visual Studio 2017, we have added support for debugging ASP.NET Core applications against IIS. This blog post will walk you through enabling this feature and setting up your project to use this feature. Getting Started To get started: Enable IIS Before you can enable Development time IIS support in ...