NAntでソリューションファイル内の日本語が化ける

ので直した。

--- SolutionFactory.cs
+++ SolutionFactory.cs.new
@@ -58,7 +58,7 @@
                 // will hold the content of the solution file
                 string fileContents;

-                using (StreamReader sr = new StreamReader(solutionTask.Solution
File.FullName)) {
+                using (StreamReader sr = new StreamReader(solutionTask.Solution
File.FullName, Encoding.Default)) {
                     fileContents = sr.ReadToEnd();
                 }