mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-29 13:28:04 +00:00
Added information about software environment to the report.
This commit is contained in:
parent
fa260097d4
commit
43c88946c4
@ -170,6 +170,15 @@ namespace OpenHardwareMonitor.Hardware {
|
||||
w.Write("Version: "); w.WriteLine(version.ToString());
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user