Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Some unit tests did not work at first. These were all errors which could easily be resolved. Most off them were due to some post build events with windows bat commands. One bug in log4net was found and not further examined. Code could be easily refactored to work.

Code Block
cscs
//old
Log.InfoFormat("message {0}", "parameter");
//new
Log.Info(String.Format("message {0}", "parameter"));

...