DevC.KPI.Reporting.Sdk 1.1.0

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package DevC.KPI.Reporting.Sdk --version 1.1.0
                    
NuGet\Install-Package DevC.KPI.Reporting.Sdk -Version 1.1.0
                    
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="DevC.KPI.Reporting.Sdk" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevC.KPI.Reporting.Sdk" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="DevC.KPI.Reporting.Sdk" />
                    
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 DevC.KPI.Reporting.Sdk --version 1.1.0
                    
#r "nuget: DevC.KPI.Reporting.Sdk, 1.1.0"
                    
#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 DevC.KPI.Reporting.Sdk@1.1.0
                    
#: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=DevC.KPI.Reporting.Sdk&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=DevC.KPI.Reporting.Sdk&version=1.1.0
                    
Install as a Cake Tool

DevC.KPI Reporting SDK

The plugin-authoring SDK for DevC.KPI — a code-driven reporting & KPI tool. Compile a reporting plugin against this package; the licensed DevC.KPI engine loads it at runtime.

Proprietary software. Copyright © DevCircle IT Consulting GmbH. All rights reserved. Use is permitted solely to develop plugins for a licensed DevC.KPI installation — see the bundled LICENSE.txt. This is not open-source.

What's in the box

  • IReportingPlugin — the discovery/registration contract your plugin implements.
  • DataSourceBuilder<T> + CubeEngine — define fact rows, conformed dimensions and LinqCube cubes.
  • Widgets — Widget, ListWidget, and the Dim / Measure / EChart / QueryResult helpers.
  • The conformed-dimension and filter-kind contracts, DateRange, NginxLog, ReportingException.

Quick start

<ItemGroup>
  <PackageReference Include="DevC.KPI.Reporting.Sdk" Version="1.0.0" />
</ItemGroup>
using DevC.KPI.Reporting.Plugins;

public sealed class MyPlugin : IReportingPlugin
{
    public string Id => "MyTenant";

    public void Register(PluginRegistration r)
    {
        r.BeginPlugin(Id);
        // r.AddDataSourceBuilder(...); r.AddWidget(...); r.AddDimension(...);
    }
}

Build the plugin, drop its output folder into the engine's plugins volume, and the engine discovers and loads it (each plugin in its own load context). See your DevC.KPI engine documentation for the full authoring guide and the deployment/bundle workflow.

Support

Licensing and support enquiries: devcircle.at.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.1 0 7/22/2026