ASP.NET 4.5 has introduced built-in support for bundling and minification of javascript and css resources.Here minification refers to the mechanism of compressing the javascript & stylesheet files thus reducing the size of data to transferred over the wire. The process of bundling involves combining multiple javascript/css files into one, thus reducing the number of HTTP [...]
Archive for November, 2011
Inside ASP.NET 4.5 Bundling and Minification
Posted: November 27, 2011 in ASP.NETTags: .NET 4.5, ASP.NET 4.5
4
Roslyn CTP–Syntax Tree–Part II–Singleton Checker
Posted: November 20, 2011 in .NET, C#Tags: C#, Roslyn CTP
In the last post related to Roslyn we developed a very basic syntax walker. In this post we will see how we can use the same for code analysis and checking. As a good practice we generally try to avoid having instance members in a singleton class. This is true if you are making your [...]
Roslyn CTP–A Walk Through The Syntax Tree–Part I
Posted: November 20, 2011 in .NET, C#Tags: C#, Roslyn, Syntax API
The Roslyn project aims to expose the functionalities of C#/VB complier as API/Services. The Roslyn CTP was released this October.One of the important components of Roslyn is the Compiler API. This exposes an object model which provides access to information generated at the different stages of compilation.The first phase of any compilation process involves parsing [...]

