On Friday I was at the Israeli Alt.NET conference, which was great . One thing that kept coming up was the frustration of everyone with current Installers technologies. I am using Visual Studio Setup Project, which is rather usable, but has many disadvantages , with the main one being the lack of ability to build it outside of Visual Studio. I've also tried using WiX , but its XML "UI" and incredible learning curve left me a bit puzzled. The Alt.NET guys assured me that I wasn't...
I've been looking for the easiest possible way to deploy a web.config file to several different environments. My web.config looks something like this in development: < configuration > < appSettings > < add key ="LogEveryRequest" value ="true" /> < add key ="EnableCaching" value ="false" /> < add key ="DefaultGisServer" value ="127.0.0.1" /> </ appSettings > < connectionStrings > < add connectionString...