Xeku.Notes 0.0.0.7

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

Xeku.Notes

Core notes module for Xeku, providing hierarchical categories and tag management.

Features

  • Business Objects:
    • Note: Core note entity with Tiptap rich text editor support
    • NoteCategory: Hierarchical categories implementing ITreeNode
    • NoteTag: Many-to-many tag management
  • Data Isolation: Built-in Owner field with auto-filtering
  • Full-Text Search: Integration with Xeku.FullTextSearch

Architecture

graph TB
    subgraph Data["Data Layer"]
        style Data fill:#e8f5e9
        Note["Note"]
        Category["NoteCategory"]
        Tag["NoteTag"]
    end

    subgraph Logic["Service Layer"]
        style Logic fill:#fff4e1
        Module["NotesModule"]
        Filter["Owner Filter"]
    end

    subgraph External["External"]
        style External fill:#f3e5f5
        FTS["Xeku.FullTextSearch"]
        Editor["Xeku.Editors"]
    end

    Module --> Note
    Module --> Category
    Module --> Tag
    Note --> Filter
    Note --> FTS
    Note --> Editor
    Category --> |Parent| Category

Installation

dotnet add package Xeku.Notes

Usage

Module Registration

// Module.cs
public sealed class MyModule : ModuleBase
{
    public MyModule()
    {
        RequiredModuleTypes.Add(typeof(Xeku.Notes.NotesModule));
    }
}

AI Agent Integration

Use Cases

Scenario Description
Note Management Create, update, delete notes via API
Category Organization Build hierarchical category trees
Tag Association Assign multiple tags to notes
Content Search Full-text search across notes

API Integration

// Create a note with category and tags
using var os = Application.CreateObjectSpace(typeof(Note));
var note = os.CreateObject<Note>();
note.Subject = "Meeting Notes";
note.Content = "{ \"type\": \"doc\", ... }";  // Tiptap JSON
note.Category = os.FindObject<NoteCategory>(c => c.Name == "Work");

var tag = os.CreateObject<NoteTag>();
tag.Name = "Important";
note.Tags.Add(tag);

os.CommitChanges();

Best Practices

  1. Owner Assignment: Notes auto-assign Owner from current user
  2. Category Hierarchy: Use Parent property for nested categories
  3. Content Format: Store Tiptap JSON in Content property

License

MIT License

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

Showing the top 2 NuGet packages that depend on Xeku.Notes:

Package Downloads
Xeku.Notes.Blazor

Xeku Notes Blazor integration with custom TreeGrid Note Editor.

Xeku.Notes.WebApi

Xeku Notes Web API integration.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.0.7 135 1/28/2026
0.0.0.6 121 1/21/2026
0.0.0.5 123 1/15/2026
0.0.0.4 126 1/13/2026
0.0.0.3 123 1/9/2026