Products

Solutions

Resources

Partners

Community

About

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

The Community Blog is a personal opinion of community members and by no means the official standpoint of DNN Corp or DNN Platform. This is a place to express personal thoughts about DNNPlatform, the community and its ecosystem. Do you have useful information that you would like to share with the DNN Community in a featured article or blog? If so, please contact .

The use of the Community Blog is covered by our Community Blog Guidelines - please read before commenting or posting.


7 vNext facts that all ASP.NET developers need to know

ASP.NET vNext – formally known as ASP.NET 5 – will be released soon.  While the details have been known for some time, it’s a good chance to look again at what is coming and how it will affect ASP.NET developers.  This post is designed as a background to vNext and is not specific to DNN .

1. Combined Application Models

ASP.NET combines MVC, Web API, SignalR and Web Pages into one framework, collectively called MVC 6.  ASP.NET MVC 6 harmonizes controllers, views and models and no longer requires System.Web.

Why you need to know:
The gradual achievement of the ‘One ASP.NET’ vision is finally with us and the same code patterns work for the different technologies.  No longer will MVC act similar-but-different to Web API.    Microsoft has signaled the future of web application development.

2.  Two CLR Versions

There are two versions of .NET Framework – the regular .NET version and the new ‘Core’ Common Language Runtime (sometimes known as ‘CoreCLR’).   The full CLR is sometimes referred to as the ‘Desktop’ or ‘Full’ CLR.   The CoreCLR has nothing in the Global Assembly Cache and multiple versions can be installed side by side on the same machine.  The CoreCLR is a cut-down version and is optimized for high throughput with low memory – otherwise known as ‘Cloud Optimized’.  ASP.NET will run on either the ‘full’ CLR or the Core CLR, depending on what dependencies are needed.   The Core CLR is fully open source and available on GitHub, and runs on Linux/Unix/OSx via Mono. 

Why you need to know:  ASP.NET applications developed for vNext will benefit from targeting the CoreCLR.  This will allow cross-platform deployment,  simpler deployment models and less problems from version conflicts.  But choices need to be made early in the project pipeline to ensure that Desktop CLR dependencies are not included in code.  The CoreCLR runs with a fraction of the memory required for the previous .NET frameworks.   Existing projects using technology such as MVC 5, Webforms, SignalR 2 or Entity Framework 6  will need to use the full CLR.

3. New Compiler

ASP.NET vNext uses the ‘Roslyn’ compiler, which is a managed compiler written in it’s own language (the C# compiler is written in C#).  Roslyn compiler technology is fast and enables true ‘edit and run’ capabilities.  There is no need to compile an ASP.NET application and deploy the binaries, as you can just deploy the code files and let it compile in place.  Roslyn is open source and hosted on Github.

Why you need to know:  Changing to a simpler deployment method will change the way ASP.NET applications are developed and deployed.    The ground-up rewrite of the way that C# and VB.NET are compiled will also change the toolsets available as Roslyn exposes detailed information about the compilation process, and theoretically allows you to develop your own implementation.

4. Dependency Injection everywhere

Dependency Injection is now a first-class .NET citizen, and the pattern appears everywhere, including MVC, WebAPI and SignalR – as already mentioned, in a harmonized way. 

Why you need to know : Dependency Injection (DI) is not a new pattern, but different parts of .NET have been using different flavours for a while.  There is now a unified model and if you’re not familiar with DI, now is the time to start learning.  

5.  One simple project type

ASP.NET projects are no longer different types like ‘Web Application Projects’  and ‘Web Site Projects’.  In fact you don’t even need a .csproj or .vbproj file for a web project.   Instead, the project is directory based, and the key file is now called ‘project.json’.   The project.json file doesn’t include a list of files but simply lists the dependencies of the project.

Why you need to know :
Theoretically you’ve never needed Visual Studio to compile and run a project, but it was difficult to try.  With the advent of directory-based projects and no Microsoft-specific file formats, any decent text editor can become an ASP.NET editor.  This includes cross-platform text editor support, such as using Sublime Text on OSX.   As you can now build and run an ASP.NET project on OSX, it really is a true cross-platform solution.

6.  Changes to the Application Pipeline

The ASP.NET pipeline has been re-invented.   Understanding and manipulating the ASP.NET pipeline was always difficult, and there was no concrete guarantee that modules listed in a web.config file would execute in the expected order.  Not only is the web.config file gone, but you can also explicitly specify the pipeline execution components and order.   This is done in the simple ‘Startup’ class used in ASP.NET applications.

Why you need to know:  The traditional httpModule/httpHandler model is now a specific programming order instead of a set of components listed in configuration.  That may sound difficult to use in a production environment but the truth is that a binary-compilation and deployment is not necessary, so changing the pipeline is as simple as changing the order of code in the Startup class.

7.  Open Source Everywhere

Just about all of ASP.NET is now open source and hosted on Github.   There was once a debate that you couldn’t call open source projects like DNN ‘true’ open source because there were closed parts of the stack.   If you now run Linux-Mono-.NET with Roslyn compile you have a completely open stack from top to bottom.

Why you need to know:  We are in a new era of Microsoft tools and frameworks.  The release cycle of years gone by when a fully formed new version dropped every year or so is a relic of the past.  You can now observe the next generation of tools being developed in real time – and you can also participate by finding and fixing bugs in the core implementation.

These topics merely skim the surface of the changes in ASP.NET vNext.  If you’re curious about any in particular, feel free to ask questions in the comments – I’m sure the DNN community will eagerly answer any queries.  The DNN team will be creating some more blog posts in the coming weeks on ASP.NET vNext, so feel free to request a specific topic to cover.

Read more vNext articles : Explaining K, KRE, KVM, KPM and other 'K' components

Comments

There are currently no comments, be the first to post one.

Comment Form

Only registered users may post comments.

NewsArchives


Aderson Oliveira (22)
Alec Whittington (11)
Alessandra Daniels (3)
Alex Shirley (10)
Andrew Hoefling (3)
Andrew Nurse (30)
Andy Tryba (1)
Anthony Glenwright (5)
Antonio Chagoury (28)
Ash Prasad (37)
Ben Schmidt (1)
Benjamin Hermann (25)
Benoit Sarton (9)
Beth Firebaugh (12)
Bill Walker (36)
Bob Kruger (5)
Bogdan Litescu (1)
Brian Dukes (2)
Brice Snow (1)
Bruce Chapman (20)
Bryan Andrews (1)
cathal connolly (55)
Charles Nurse (163)
Chris Hammond (213)
Chris Paterra (55)
Clint Patterson (108)
Cuong Dang (21)
Daniel Bartholomew (2)
Daniel Mettler (181)
Daniel Valadas (48)
Dave Buckner (2)
David Poindexter (12)
David Rodriguez (3)
Dennis Shiao (1)
Doug Howell (11)
Erik van Ballegoij (30)
Ernst Peter Tamminga (80)
Francisco Perez Andres (17)
Geoff Barlow (12)
George Alatrash (12)
Gifford Watkins (3)
Gilles Le Pigocher (3)
Ian Robinson (7)
Israel Martinez (17)
Jan Blomquist (2)
Jan Jonas (3)
Jaspreet Bhatia (1)
Jenni Merrifield (6)
Joe Brinkman (274)
John Mitchell (1)
Jon Henning (14)
Jonathan Sheely (4)
Jordan Coopersmith (1)
Joseph Craig (2)
Kan Ma (1)
Keivan Beigi (3)
Kelly Ford (4)
Ken Grierson (10)
Kevin Schreiner (6)
Leigh Pointer (31)
Lorraine Young (60)
Malik Khan (1)
Matt Rutledge (2)
Matthias Schlomann (16)
Mauricio Márquez (5)
Michael Doxsey (7)
Michael Tobisch (3)
Michael Washington (202)
Miguel Gatmaytan (3)
Mike Horton (19)
Mitchel Sellers (40)
Nathan Rover (3)
Navin V Nagiah (14)
Néstor Sánchez (31)
Nik Kalyani (14)
Oliver Hine (1)
Patricio F. Salinas (1)
Patrick Ryan (1)
Peter Donker (54)
Philip Beadle (135)
Philipp Becker (4)
Richard Dumas (22)
Robert J Collins (5)
Roger Selwyn (8)
Ruben Lopez (1)
Ryan Martinez (1)
Sacha Trauwaen (1)
Salar Golestanian (4)
Sanjay Mehrotra (9)
Scott McCulloch (1)
Scott Schlesier (11)
Scott Wilkinson (3)
Scott Willhite (97)
Sebastian Leupold (80)
Shaun Walker (237)
Shawn Mehaffie (17)
Stefan Cullmann (12)
Stefan Kamphuis (12)
Steve Fabian (31)
Steven Fisher (1)
Tony Henrich (3)
Torsten Weggen (3)
Tycho de Waard (4)
Vicenç Masanas (27)
Vincent Nguyen (3)
Vitaly Kozadayev (6)
Will Morgenweck (40)
Will Strohl (180)
William Severance (5)
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out