# HG changeset patch # User moel.mich # Date 1273938728 0 # Node ID 4ca4621553aafebf718b114111afa70b05958793 # Parent 407f98562c3b1b0b02925c16cd085fe292bd2e12 Added information about software environment to the report. diff -r 407f98562c3b -r 4ca4621553aa Hardware/Computer.cs --- a/Hardware/Computer.cs Sat May 15 14:16:00 2010 +0000 +++ b/Hardware/Computer.cs Sat May 15 15:52:08 2010 +0000 @@ -171,6 +171,15 @@ w.WriteLine(); NewSection(w); + w.Write("Common Language Runtime: "); + w.WriteLine(Environment.Version.ToString()); + w.Write("Operating System: "); + w.WriteLine(Environment.OSVersion.ToString()); + w.Write("Process Type: "); + w.WriteLine(IntPtr.Size == 4 ? "32-Bit" : "64-Bit"); + w.WriteLine(); + + NewSection(w); foreach (IGroup group in groups) { foreach (IHardware hardware in group.Hardware) ReportHardwareTree(hardware, w, "");