Added information about software environment to the report.

This commit is contained in:
Michael Möller 2010-05-15 15:52:08 +00:00
parent fa260097d4
commit 43c88946c4

View File

@ -170,6 +170,15 @@ namespace OpenHardwareMonitor.Hardware {
w.Write("Version: "); w.WriteLine(version.ToString()); w.Write("Version: "); w.WriteLine(version.ToString());
w.WriteLine(); 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); NewSection(w);
foreach (IGroup group in groups) { foreach (IGroup group in groups) {
foreach (IHardware hardware in group.Hardware) foreach (IHardware hardware in group.Hardware)