Enable NuGet package restore

Its never to late, recently I am seeing people around me who are misunderstanding NuGet Package Manager in Visual studio. Shouting Stop adding NuGet packages / library to source control First version of NuGet was release in January 13, 2011 and lots of things are changed since then. One of my…

IIS Manager missing in IIS 7 on Windows Server 2008

I recently installed an evaluation version of Windows Server 2008 (web edition) for some research thingy. So in order to use IIS, I added web server role using server manager wizard. Normally I would expect to see IIS Manager, so I can configure IIS for further use but I don't…

AppDomain.CurrentDomain.SetupInformation for .NET application using C#

AppDomain.CurrentDomain.SetupInformation property provides some general information about the currently executing assembly. This can provide more information about the assembly binding information for current instance of AppDomain used. Above property results instance of type AppDomainSetup class. Few properties you may find interesting about the currently executing assembly are as…