Archives
-
Parsing a Solution File
There's a new challenge up at Code Blog. This time the tests are for something a little more real. The aim is to parse a Visual Studio SLN file. I admit to having a vested interest in some code to do this. I am sick to death of poluting my test code with explicit knowledge of where project output directories are located ('bin\Debug' or whatever). I really want to reference my project directories by name. For example, 'Projects.Find("MyProject").BaseDirectory'.
-
ASP.NET's Configuration System
Have you ever wondered how ASP.NET installs its fancy 'Web.config' configuration system? Well, here it is...
-
Sandboxing code dynamically
I have found a good article on Ivan's blog on the proper way to sandbox code.
-
New Test
There's a new set of unit tests over at Test Driven .NET. Thanks to Johan Danforth for being our first 'test driver'. Hopefully this one will show there are many ways to skin a cat. Once there are enough submissions up, I am hoping to graph them (maybe using Jonathan de Halleux's NPerf recently posted on Code Project).
-
clientScriptsLocation
Donny Mack shows us how to specify the 'aspnet_client' directory in your Web.config. I'm sure this will come in useful soon (I'm playing the Cassini web server).