aspnet5

A 12-post collection

kmon! ASP.NET 5 Where are my changes?

One of the new features in Visual Studio 2015 for ASP.NET 5 is an agile development environment. What that means is now when you makes changes to your code, there is no need to re-compile to see the changes in the browser. Visual Studio uses the Roslyn compiler to enable this dynamic compilation. You still have all of the structure and power of a compiled framework, but the development experience feels more like an interpreted language. See more here - ASP.NET 5 Overview This is a great new feature for Visual Studio users, but the new awesome is you now have a choice of what IDE you may use. That's where kmon comes in. kmon, pronounced kuh-mon, is...


ASP.NET vNext Project Creation using Yeoman

Developing ASP.NET 5 applications using Visual Studio 2015 gives you a rich IDE experience, however now with ASP.NET now being cross platform that development IDE is not afforded to us on a Mac. Checkout this post Develop ASP.NET vNext Applications on a Mac for getting started. Using the Yeoman generator generator-aspnet you will have the option to create one of the following application types: $ yo aspnet Web Application MVC Application Nancy Fx Application Console Application Class Library (recently added) After your project is created you can get started in Sublime Text, vim, Brackets etc. Checkout OmniSharp.net for the supported development enviroments and tooling support information there. Although the generator gets you started with the selected project...