Anton
Anton
If you're open to a platform-specific option, WMI may yield enough info. An example from PowerShell: **Get-WmiObject -Class Win32_Processor | fl** or **Get-WmiObject -Class Win32_Processor | Get-Member** Some of the...
Assembly.Load would work... also consider a Conditional on the reference to the library NBench.SysInfo.Windows so the decision is made at time of build, perhaps with the default build providing only...
I'll put together a naïve NBench.SysInfo.Windows.WMI class in a new project under the same solution, but @Aaronontheweb tell me more about how you would like to load it. Perhaps from...
@Aaronontheweb: take a look at #109; I've also added: - Get-WmiObject -Class Win32_PhysicalMemory - Get-WmiObject -Class Win32_BIOS
Hi @Aaronontheweb, still interested in this?
@Aaronontheweb is the implementation of `BenchmarkRunReport`, `MetricRunReport` and `BenchmarkFinalResults` to be considered stable? I'm thinking of writing them to an Azure SQL DB using a new (additional) implementation of `IBenchmarkOutput`....