Remove Unused View Engines
If you’re an ASP.NET MVC developer, you might not know that ASP.NET still loads the View Engines for both Razor and Web Forms by default. This can cause perf...
If you’re an ASP.NET MVC developer, you might not know that ASP.NET still loads the View Engines for both Razor and Web Forms by default. This can cause perf...
If a type implements IDisposable, wrap the use of it in a “using” statement, so that it automatically disposes of objects properly when the block exits.
Many people deploy to production without checking how logging is currently configured. It is always advisable to check whether your policy is to have logging...
To accurately debug or profile an external assembly or library (i.e. one you’re not directly compiling), you need the PDB files that accompany each of the DL...
Every time you update your site, IIS must recompile it during the first request, so the initial request takes significantly longer than subsequent ones. An e...