Last week I got a chance to attend Microsoft Tech Ed 2014 @ Ashok Lalith. Bangalore
Thought of putting up the new feature Microsoft has for Asp.net vNext which I got from Tech Ed
Asp.net vNext ---The next generation
Thought of putting up the new feature Microsoft has for Asp.net vNext which I got from Tech Ed
Asp.net vNext ---The next generation
- Totally Modular.
- Interdependency between unnecessary dll’s being avoided. Means No more System.Web !!!.
- Framework goes along with the application (means can be shipped with the app).
- Save and Refresh, no Build.
- Works on cross platform (using mono)
- No dependency on Visual studio (can use other compatible Editors/Tools of your choice like notepad++ etc.).
- Improvement in start-up time.
- Faster deployment Cycle.
- Is backward compatible.
- No web.config.Web.config has transformed to project.json. Intelligence available in JSON.
- No global.ascx.
- Startup.cs becomes the entry point.
- Reference are no more and replaced with nugget packages and managed in local user folder.
- No more dll in bin/debug folder on running as the same is managed in memory (magic of for new Roslyn compiler).
- ASP .net 5.0. is the desktop full version of CLR and ASP.net core 5 is the cloud optimized version of CLR.
- No project reference…need to added to the projecy.json.
- “Produce Output during build” on project property will produce a nugget package which can be used for other project reference. The same has to be copied to the local nugget package repository for other project to refer.
- The magic “K”..no need of IIS, the app can be run on any platform. OWIN, the Open Web Interface for .NET is taking over the ASP.NET runtime.
- http://developer.telerik.com/featured/microsofts-special-k-an-introduction-to-asp-net-vnext/
- The source code of Asp.net Vnext is open and available on github.
- Microsoft’s new strategy is… mobile-first, cloud-first”.
- Save and Refresh, no Build
- More Reading @ http://www.hanselman.com/blog/IntroducingASPNETVNext.aspx
No comments:
Post a Comment