HTTP.sys
It is a web server for ASP.NET Core, and very similar to Kestrel Web Server. It only runs on Windows. The .NET Core 1.x has packages Microsoft.AspNetCore.Server.WebListener and Microsoft.Net.Http.Server which are merged into a new package "Microsoft.AspNetCore.Server.HttpSys".
Update in Configuration
In ASP.NET Core 2.0, IConfiguration interface instance is added to the service container. This makes it easier for applications to retrieve the configuration values from the service container.
Update in Logging
In the new version of the framework, Logging is added into DI (dependency injection) system by default. We need to add providers and configure filtering in main function (program.cs file) instead of defining in the Startup class.
Update in Authentication Model
The new authentication model makes it easier to configure authentication for an application using dependency injection (DI).
Update in Identity
With ASP.NET Core 2.0, it is easy to build secure web APIs using Identity. MSAL (Microsoft Authentication Library) provides access token for accessing the Web API.
New SPA (Single Page Application) project Templates
SPA project templates for Knockout.js, React.js, React.js with Redux, Aurelia, and Angular are available. The Angular template has been updated with Angular version 4.0. The React and Angular templates are available by default.
Added support for C# 7.1 in Razor
The Razor View Engine is now compatible with new Roslyn compiler that adds support for a new feature of C# 7.1, such as Inferred Tuple Names, Default Expressions, and Pattern-Matching with Generics. To use C# 7.1 in our project, we need to specify "LangVersion" property to latest in our project file.
Runtime Store
The .NET Core 2.0 introduces meta package (Microsoft.AspNetCore.All). The application can take the advantage of new .NET Core Runtime store that is used in this meta-package. It contains all the assets required to run the application. We do not need to reference any other assets from NuGet packages when we use this meta-package. All the assets are precompiled so it helps us improve the startup performance of an application.
Automatic pre-compilation of Razor View
In .NET Core 2.0, the Razor View is automatically pre-compiled during the publishing by default. It helps us reduce the published output size and application startup time.
Automatic use of anti-forgery tokens
ASP.NET Core supports the HTML encoding of our page content but this new version of framework takes care of cross-site request forgery (XSRF) attacks. ASP.NET Core emits anti-forgery tokens and validates it on form POST without any extra configuration.
Application Insights diagnostics
Hosting environment is added in extra dependency packages and it executes code during the startup without taking any external dependency or calling to any methods. In the new framework, this feature is used to enable automatic application insights diagnostics when the application is running / debugging in Visual Studio and running in Azure App Services.
Summary
ASP.NET Core is released with many new features while several features are enhanced. Please see
ASP.NET Core 2.0 Release Notes for a complete list of changes