If you have solutions with multiple projects, compile time can increase a lot, but if you have multicore machine you can reduce compilation time using a little trick described in the blog of Scott Hanselman. In a solution I work with, after a clean of the solution, standard build took 23 seconds to finish, while [...]
Visual Studio has the concept of grouping files together a feature used mainly from code generation tools to groups generated files under the main file, but this feature can be used even for your class, as shown in Figure1. Figure 1: Two code files nested inside program.cs There are a lot of reasons to group [...]
To test dev 11 preview I’ve setup several virtual machines, just to be sure not to ruin my main installation box, since dev 11 is a developer preview and is not a good idea installing pre-beta release on production machine (even if dev 11 preview is really stable). One of the annoying stuff in running [...]
Continue reading about Multi monitor remote desktop on a Windows 7 virtual machine
This is the third post on the series “create a macro to Attach to Local IISâ€. The last modification I want to implement is the ability to list all the w3wp.exe active processes, if more than one process is present, I want it to show a list of all IIS processes and let the user [...]
I’ve already blogged about the creation of a macro that permits you to attach to IIS worker process pressing a key combination. This approach does not work if you have multiple w3wp.exe processes that are actually running into your machine, because the macro only attach to the very first of them. A simple and stupid [...]
