Posts tagged with 'ASP.NET'

Switch Out Your Raygun API Key Depending on Web API Cloud Configuration

Raygun is an excellent tool that lets you know about more errors in your app than you would ever dare to fear were present. Configuration is easy: install the NuGet package, add a couple of lines to your web.config and you’re ready to go. When done, your config file will include: <section name="RaygunSettings" …

Published

Enabling bundling and minification support in a .NET 4 application

.NET 4.5 is going to offer support for bundling and minifying content on the server before passing that down to the client. If you want detailed information on what this is, go and read Scott Gu’s blog post about the features. In a nutshell, bundling is combining several files into one combined file and minification…