Features Of ASP.NET Core 1.0

ASP.NET Core 1.0 is a new open-source framework for building modern web applications. As compared to previous versions of ASP.NET many major changes happened. I’ll try to capture most of the changes in this post.

ASP.NET Core 1.0 was initially named ASP.NET 5. I’m dedicating this post to showcase the major features of ASP.NET Core 1.0.

Single aligned web stack

ASP.NET Core 1.0 is a single aligned web stack on top of ASP.NET for Web API and Web UI as in the following figure (image taken from mva):

rozer

The above figure clearly depict that there is much less sharing between these three stacks. If you will see from ASP.NET template view, you will notice that all the three options are dimmed out as shown below:

web application

Much leaner framework with reduced surface area

ASP.NET Core 1.0 is no longer based on System.Web.dll. As per dzone, typical HTTPContext object graph takes 30K in memory while new implementation takes around 2K. It means now you can take only those NuGet packages which are really required. It strictly follows pay-for-what-you-use model.

project.json file

A new JSON file named project.json is introduced which takes care of dependencies and versions. Below is the sample project.json file:

json file

A very good thing is VS2015 provides the IntelliSense support for all the available NuGet packages and versions.

properties

global.json file

This file is used to configure a solution as a whole. By default, it includes the below data: 



Options for storing configuration settings

Unlike earlier ASP.NET verisons, Web.config is not the only place for storing the configuration settings. ASP.NET Core 1.0 allows you to read configuration values from range of sources like XML, JSON, environment variables. All the configuration sources can be set in a class file named Startup as shown below:



Code

In cloud environment value of environment variables will automatically be used rather than local configuration values.

Client Side Dependency Management

Dependencies folder contains two subfolders corresponds to two package managers named Bower and npn. These folder tells which client side dependencies are managed by which tool.



Server Side Dependency Management

In ASP.NET Core 1.0, server side references are placed in References folder with corresponding target frameworks:

reference

More Options for Hosting

Cross platform support by .NET Core 1.0 opened up the new hosting options. Now user need not to rely only on IIS for web application hosting. This initiative was taken because IIS is not available on other platforms like Mac and Linux. On such platforms, ASP.NET applications can be self-hosted or kestrel web server can be used.

Inbuilt Dependency Injection Support

ASP.NET Core 1.0 includes a simple built-in inversion of control (IoC) container that supports constructor injection by default, but this can be replaced with any other container. Services are made available through dependency injection and can be setup in ConfigureServices method of Startup class. I’ll emphasis more on this in my next blog.

Static files at wwwroot

Static files are those files which are served directly to clients. It includes HTML, image and JavaScript files. In ASP.NET Core 1.0, default location of static files is wwwroot of project and location of this wwwroot is defined in project.json. In other words, static files which are not located to wwwroot will not be accessible. Introducing this feature enhances the security capability of application and one need not to impose any exceptional guidelines to block access to delicate files.




Target Frameworks

In order to support cross platform development, applications built using ASP.NET Core 1.0 can target full .NET and .NET Core framework. It means you can run your application either on Windows or on Mac or Linux. 



ASP.NET Core 1.0 features at a glance
[reference – scott’s weblogs]:

  • Build and run cross-platform ASP.NET apps on Windows, Mac and Linux  
  • Built on .NET Core, which supports true side-by-side app versioning   
  • New tooling that simplifies modern Web development 
  • Single aligned web stack for Web UI and Web APIs   
  • Cloud-ready environment-based configuration  
  • Integrated support for creating and using NuGet packages  
  • Built-in support for dependency injection        
  • Ability to host on IIS or self-host in your own process.                
Basically this new ASP.NET(MVC + Web API + Web Pages = ASP.NET Core 1.0) is much better tuned for modern web development.