Browse by Tags

Refactor NUnit Tests to MSTest
03 January 06 09:43 PM | john | 0 Comments   
If you have been using NUnit to write your unit tests, and you have access to Visual Studio 2005 Team System you'll want to consider upgrading your NUnit tests to the VS Unit Test Framework, which I'll call VSUnit for short. There is a walkthrough that Read More...
Filed under: , , , ,
Refactoring XmlValidatingReader in .NET 2.0
28 December 05 12:42 PM | john | 0 Comments   
I seem to have come across this several times in the past week or two, so it's worth making a note. In .NET 2.0 XmlValidatingReader is obsolete. You need to do something like the following in order to create a validating reader now: XmlReaderSettings Read More...