ZenMonitor.Core.Windows 2.0.0-alpha.9

This is a prerelease version of ZenMonitor.Core.Windows.
dotnet add package ZenMonitor.Core.Windows --version 2.0.0-alpha.9
                    
NuGet\Install-Package ZenMonitor.Core.Windows -Version 2.0.0-alpha.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZenMonitor.Core.Windows" Version="2.0.0-alpha.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZenMonitor.Core.Windows" Version="2.0.0-alpha.9" />
                    
Directory.Packages.props
<PackageReference Include="ZenMonitor.Core.Windows" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ZenMonitor.Core.Windows --version 2.0.0-alpha.9
                    
#r "nuget: ZenMonitor.Core.Windows, 2.0.0-alpha.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ZenMonitor.Core.Windows@2.0.0-alpha.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZenMonitor.Core.Windows&version=2.0.0-alpha.9&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=ZenMonitor.Core.Windows&version=2.0.0-alpha.9&prerelease
                    
Install as a Cake Tool

ZenMonitor.Core

ZenMonitor.Core on GitHub | ZenMonitor.Core on NuGet

ZenMonitor.Core.Windows

The Windows library of ZenMonitor.Core provides all concrete implementations and services specific to Windows.

This library is not meant to be used directly. Use ZenMonitor.Core.Hosting to automatically register all Windows services. Read its README for instructions.


Documentation

Major docs are all present in ZenMonitor.Core. This includes data structures, interfaces, project status and more.

It's highly recommended to read them first.

All services implement the interfaces in ZenMonitor.Core.Abstractions and use its pre-defined records as data structures.

They also have dependencies which allow them to allow testing and logging with ease.

Example:

[SupportedOSPlatform("windows")]
public class CpuTel(ILogger<CpuTel> logger, IUtilsWindows utils) : ICpuTel
{
    private CpuInfoSnapshot _snapshot = new("", 0, 0, 0, 0, [], [], []);

    ...
}
  • Data Sources

    All Windows related data is retrieved via native Win32 API calls (P/Invoke), WMI and the Windows Registry.

    Telemetry Service Data Sources
    CpuTel Win32 API (P/Invoke), Windows Registry, WMI (MSAcpi_ThermalZoneTemperature)
    DriveTel WIP
    GpuTelNvidia WIP
    GpuTelAmd WIP
    MemoryTel WIP
    NetworkTel WIP
    ProcessTel WIP
    SystemTel WIP
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ZenMonitor.Core.Windows:

Package Downloads
ZenMonitor.Core.Hosting

Auto-detection and DI registration for ZenMonitor.Core platform services.

GitHub repositories

This package is not used by any popular GitHub repositories.