asp.net 5 View compilation in ASP.NET 5 with the RazorPreCompileModule In MVC versions up to and include version 5, you could compile your Razor views by adding the attribute in the csproj file. But in ASP.NET 5 there is no more csproj file, so how we compile views for MVC 6? Why? If you've never compiled views and
asp.net 5 Unit Testing Entity Framework 7 with the In Memory Data Store Entity Framework 7 [https://github.com/aspnet/EntityFramework] includes a new InMemory [https://github.com/aspnet/EntityFramework/tree/dev/src/EntityFramework.InMemory] store which is fantastic for unit testing. No more mocking DbContext or doing other dumb things! Here's how Start by creating a new class library project using the
asp.net 5 Creating an ASP.NET 5 Class Library with Vim One of the great things about ASP.NET 5 (aka vNext) is that there is no longer a reliance on Visual Studio. I definitely think VS is a great IDE, but it does have it’s quirks and people love options; the option of not having to use VS is
asp.net 5 Explaining the ASP.NET 5 Configuration Framework ASP.NET 5 (aka vNext) has a new configuration system [https://github.com/aspnet/Configuration] which is designed to be lightweight and to work everywhere. This means no more web.config XML hell! Hooray! (However you can use XML files if you want…) Loading Settings The Configuration class is defined