Semantico.Core 3.3.0.1

dotnet add package Semantico.Core --version 3.3.0.1
                    
NuGet\Install-Package Semantico.Core -Version 3.3.0.1
                    
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="Semantico.Core" Version="3.3.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Semantico.Core" Version="3.3.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Semantico.Core" />
                    
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 Semantico.Core --version 3.3.0.1
                    
#r "nuget: Semantico.Core, 3.3.0.1"
                    
#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 Semantico.Core@3.3.0.1
                    
#: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=Semantico.Core&version=3.3.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Semantico.Core&version=3.3.0.1
                    
Install as a Cake Tool

Semantico.Core

Core library providing semantic alerts and notifications for databases.

Overview

Semantico.Core contains the domain models, services, and data access abstractions for monitoring databases and sending notifications via Email, Microsoft Teams, and Jira.

Features

  • Multi-step query execution with result chaining
  • Cross-database support (PostgreSQL, SQL Server, MySQL)
  • Notification delivery via Email, Teams, and Jira
  • Data migration and ETL capabilities
  • Database metadata introspection
  • Encrypted connection string storage

Installation

# For PostgreSQL
dotnet add package Semantico.Core.PostgreSql

# For SQL Server
dotnet add package Semantico.Core.SqlServer

Note: This package is typically installed as a dependency when you install a database provider package.

Quick Start

using Semantico.Core;

// Configure in Program.cs (single method call)
builder.Services.AddSemantico(builder.Configuration, options =>
{
    options.UsePostgreSql(builder.Configuration.GetConnectionString("SemanticoContext")!, "semantico");
    // Or use SQL Server:
    // options.UseSqlServer(builder.Configuration.GetConnectionString("SemanticoContext")!, "semantico");

    options.AddSemanticoScheduler<YourScheduler>();
    options.BaseUrl = "https://your-domain.com/semantico";
});

Documentation

License

MIT License - see LICENSE

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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 (5)

Showing the top 5 NuGet packages that depend on Semantico.Core:

Package Downloads
Semantico.UI

Blazor UI and ASP.NET Core integration for Semantico. Provides MudBlazor-based admin interface with middleware and service extensions for managing projects, queries, subscriptions, and notifications.

Semantico.Core.PostgreSql

PostgreSQL database provider for Semantico. Provides Entity Framework Core configuration and migrations for PostgreSQL databases with snake_case naming conventions.

Semantico.Core.SqlServer

SQL Server database provider for Semantico. Provides Entity Framework Core configuration and migrations for SQL Server databases.

Semantico.UI.AspNet

ASP.NET Core integration for Semantico UI. Provides middleware and service extensions for hosting the Semantico Blazor admin interface in ASP.NET Core applications.

Semantico.AI

Semantico AI extensions library providing LLM-powered documentation generation, alert creation, and AI actors. Optional add-on for Semantico core.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.3.0.1 142 2/9/2026
3.2.1.1 231 2/3/2026
3.1.1.1 169 1/27/2026
3.0.0.5 275 1/26/2026
3.0.0.4 143 1/23/2026
3.0.0.3 141 1/23/2026
3.0.0.2 134 1/23/2026
3.0.0.1 147 1/22/2026
2.0.8.7 112 1/22/2026
2.0.8.6 112 1/21/2026
2.0.8.5 93 1/21/2026
2.0.8.4 81 1/21/2026
2.0.8.3 88 1/20/2026
2.0.7.2 91 1/19/2026
2.0.7.1 245 1/9/2026
2.0.6.1 754 12/9/2025
2.0.5.4 423 12/8/2025
2.0.5.3 304 12/4/2025
Loading failed