TIKSN-Framework
5.5.3
dotnet add package TIKSN-Framework --version 5.5.3
NuGet\Install-Package TIKSN-Framework -Version 5.5.3
<PackageReference Include="TIKSN-Framework" Version="5.5.3" />
<PackageVersion Include="TIKSN-Framework" Version="5.5.3" />
<PackageReference Include="TIKSN-Framework" />
paket add TIKSN-Framework --version 5.5.3
#r "nuget: TIKSN-Framework, 5.5.3"
#:package TIKSN-Framework@5.5.3
#addin nuget:?package=TIKSN-Framework&version=5.5.3
#tool nuget:?package=TIKSN-Framework&version=5.5.3
TIKSN Framework
Project Description and Purpose
TIKSN Framework is a comprehensive, modern, and forward-looking .NET 10 framework designed for building a wide range of applications. It is a general-purpose toolkit that provides a rich set of features to accelerate application development, with a focus on modularity, dependency injection, and modern development practices.
Major Functionality Provided
- Versioning: Provides robust versioning capabilities for your applications and components.
- Finance: Includes types and services for financial calculations, including
Money,Currency, andForeign Exchange. - Telemetry: Offers a telemetry system for gathering and reporting analytics.
- Licensing: Provides a licensing mechanism to protect your software.
- Progress Tracking: Implements
Composite Weighted Progressfor tracking progress of complex operations. - Data Access: Implements the Repository and Unit of Work patterns with support for:
- Entity Framework Core
- Azure Storage (Table and Blob)
- MongoDB
- LiteDB
- RavenDB
- Localization: A robust localization system with support for language and region-specific resources.
- Serialization: Support for JSON, MessagePack, and Protocol Buffers.
- Networking: Includes a REST client (
Rest Requester) and a RESTful repository implementation. - Dependency Injection: Integrated with Autofac and
Microsoft.Extensions.DependencyInjection, with base classes for Composition Root setup. - Shell Applications: A powerful engine for creating sophisticated command-line (shell) applications.
- Cross-Platform UI: Support for building cross-platform mobile and desktop applications using .NET MAUI.
Use Cases
The framework can be used to build:
- Sophisticated Command-Line Applications: The
ShellCommandsexample demonstrates a powerful shell engine for creating complex command-line tools. - Cross-Platform Mobile and Desktop Apps: The
TIKSN.Framework.Mauiproject enables the development of applications for Android, iOS, macOS, and Windows from a single codebase. - Cloud-Native Applications: With support for Azure storage and various databases, the framework is well-suited for building applications that run in the cloud.
- Data-Driven Applications: The extensive database support makes it a good choice for applications that need to interact with different data sources.
Setup for Web Application
using Autofac;
using Autofac.Extensions.DependencyInjection;
using TIKSN.DependencyInjection;
using TIKSN.Mapping;
var builder = WebApplication.CreateBuilder(args);
builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory());
builder.Services.AddFrameworkCore();
// Optional: Bulk register mappers or it can be done one by one
builder.Services.Scan(scan => scan
.FromApplicationDependencies()
.AddClasses(classes => classes.AssignableTo(typeof(IMapper<,>)))
.AsImplementedInterfaces());
builder.Host.ConfigureContainer<ContainerBuilder>(containerBuilder =>
{
containerBuilder.RegisterModule<CoreModule>();
// Optional: Register project modules
});
var app = builder.Build();
await app.RunAsync().ConfigureAwait(false);
Setup for Generic Application
using Autofac;
using Autofac.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using TIKSN.DependencyInjection;
var hostBuilder = Host.CreateDefaultBuilder(args)
.UseServiceProviderFactory(new AutofacServiceProviderFactory())
.ConfigureServices((hostContext, services) =>
{
services.AddFrameworkCore();
// Register your application specific services
})
.ConfigureContainer<ContainerBuilder>(containerBuilder =>
{
containerBuilder.RegisterModule<CoreModule>();
// Optional: Register your application specific modules
});
var host = hostBuilder.Build();
await host.RunAsync();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-android21.0 is compatible. net10.0-browser was computed. net10.0-ios was computed. net10.0-ios14.2 is compatible. net10.0-maccatalyst was computed. net10.0-maccatalyst14.0 is compatible. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. net10.0-windows10.0.19041 is compatible. |
-
net10.0
- Autofac.Extensions.DependencyInjection (>= 10.0.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Storage.Blobs (>= 12.26.0)
- FluentValidation (>= 12.1.0)
- Google.Protobuf (>= 3.33.1)
- Grpc.Tools (>= 2.76.0)
- IdGen (>= 3.0.7)
- LanguageExt.Core (>= 4.4.9)
- LanguageExt.FSharp (>= 4.4.9)
- LanguageExt.Parsec (>= 4.4.9)
- LiteDB (>= 5.0.21)
- MessagePack (>= 3.1.4)
- MessagePackAnalyzer (>= 3.1.4)
- Microsoft.CodeAnalysis.NetAnalyzers (>= 10.0.100)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Caching.Memory (>= 10.0.0)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
- Microsoft.Extensions.Http (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Localization.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Debug (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- Microsoft.PowerShell.SDK (>= 7.5.4)
- Microsoft.SourceLink.GitHub (>= 8.0.0)
- Microsoft.VisualStudio.Threading.Analyzers (>= 17.14.15)
- MongoDB.Driver (>= 3.5.1)
- Newtonsoft.Json (>= 13.0.4)
- NodaTime (>= 3.2.2)
- NuGet.Versioning (>= 7.0.0)
- RavenDB.Client (>= 7.1.4)
- ReactiveUI (>= 22.2.1)
- Roslynator.Analyzers (>= 4.14.1)
- SonarAnalyzer.CSharp (>= 10.15.0.120848)
- Spectre.Console (>= 0.54.0)
- Spectre.Console.Analyzer (>= 1.0.0)
- Spectre.Console.Cli (>= 0.53.0)
- System.Interactive (>= 7.0.0)
- System.Interactive.Async (>= 7.0.0)
- System.Reactive (>= 6.1.0)
- Ulid (>= 1.4.1)
-
net10.0-android21.0
- Autofac.Extensions.DependencyInjection (>= 10.0.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Storage.Blobs (>= 12.26.0)
- FluentValidation (>= 12.1.0)
- Google.Protobuf (>= 3.33.1)
- Grpc.Tools (>= 2.76.0)
- IdGen (>= 3.0.7)
- LanguageExt.Core (>= 4.4.9)
- LanguageExt.FSharp (>= 4.4.9)
- LanguageExt.Parsec (>= 4.4.9)
- LiteDB (>= 5.0.21)
- MessagePack (>= 3.1.4)
- MessagePackAnalyzer (>= 3.1.4)
- Microsoft.CodeAnalysis.NetAnalyzers (>= 10.0.100)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Caching.Memory (>= 10.0.0)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
- Microsoft.Extensions.Http (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Localization.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Debug (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- Microsoft.Maui.Controls (>= 10.0.10)
- Microsoft.Maui.Controls.Compatibility (>= 10.0.10)
- Microsoft.PowerShell.SDK (>= 7.5.4)
- Microsoft.SourceLink.GitHub (>= 8.0.0)
- Microsoft.VisualStudio.Threading.Analyzers (>= 17.14.15)
- MongoDB.Driver (>= 3.5.1)
- Newtonsoft.Json (>= 13.0.4)
- NodaTime (>= 3.2.2)
- NuGet.Versioning (>= 7.0.0)
- RavenDB.Client (>= 7.1.4)
- ReactiveUI (>= 22.2.1)
- ReactiveUI.Maui (>= 22.2.1)
- Roslynator.Analyzers (>= 4.14.1)
- SonarAnalyzer.CSharp (>= 10.15.0.120848)
- Spectre.Console (>= 0.54.0)
- Spectre.Console.Analyzer (>= 1.0.0)
- Spectre.Console.Cli (>= 0.53.0)
- System.Interactive (>= 7.0.0)
- System.Interactive.Async (>= 7.0.0)
- System.Reactive (>= 6.1.0)
- Ulid (>= 1.4.1)
-
net10.0-ios14.2
- Autofac.Extensions.DependencyInjection (>= 10.0.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Storage.Blobs (>= 12.26.0)
- FluentValidation (>= 12.1.0)
- Google.Protobuf (>= 3.33.1)
- Grpc.Tools (>= 2.76.0)
- IdGen (>= 3.0.7)
- LanguageExt.Core (>= 4.4.9)
- LanguageExt.FSharp (>= 4.4.9)
- LanguageExt.Parsec (>= 4.4.9)
- LiteDB (>= 5.0.21)
- MessagePack (>= 3.1.4)
- MessagePackAnalyzer (>= 3.1.4)
- Microsoft.CodeAnalysis.NetAnalyzers (>= 10.0.100)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Caching.Memory (>= 10.0.0)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
- Microsoft.Extensions.Http (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Localization.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Debug (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- Microsoft.Maui.Controls (>= 10.0.10)
- Microsoft.Maui.Controls.Compatibility (>= 10.0.10)
- Microsoft.PowerShell.SDK (>= 7.5.4)
- Microsoft.SourceLink.GitHub (>= 8.0.0)
- Microsoft.VisualStudio.Threading.Analyzers (>= 17.14.15)
- MongoDB.Driver (>= 3.5.1)
- Newtonsoft.Json (>= 13.0.4)
- NodaTime (>= 3.2.2)
- NuGet.Versioning (>= 7.0.0)
- RavenDB.Client (>= 7.1.4)
- ReactiveUI (>= 22.2.1)
- ReactiveUI.Maui (>= 22.2.1)
- Roslynator.Analyzers (>= 4.14.1)
- SonarAnalyzer.CSharp (>= 10.15.0.120848)
- Spectre.Console (>= 0.54.0)
- Spectre.Console.Analyzer (>= 1.0.0)
- Spectre.Console.Cli (>= 0.53.0)
- System.Interactive (>= 7.0.0)
- System.Interactive.Async (>= 7.0.0)
- System.Reactive (>= 6.1.0)
- Ulid (>= 1.4.1)
-
net10.0-maccatalyst14.0
- Autofac.Extensions.DependencyInjection (>= 10.0.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Storage.Blobs (>= 12.26.0)
- FluentValidation (>= 12.1.0)
- Google.Protobuf (>= 3.33.1)
- Grpc.Tools (>= 2.76.0)
- IdGen (>= 3.0.7)
- LanguageExt.Core (>= 4.4.9)
- LanguageExt.FSharp (>= 4.4.9)
- LanguageExt.Parsec (>= 4.4.9)
- LiteDB (>= 5.0.21)
- MessagePack (>= 3.1.4)
- MessagePackAnalyzer (>= 3.1.4)
- Microsoft.CodeAnalysis.NetAnalyzers (>= 10.0.100)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Caching.Memory (>= 10.0.0)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
- Microsoft.Extensions.Http (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Localization.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Debug (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- Microsoft.Maui.Controls (>= 10.0.10)
- Microsoft.Maui.Controls.Compatibility (>= 10.0.10)
- Microsoft.PowerShell.SDK (>= 7.5.4)
- Microsoft.SourceLink.GitHub (>= 8.0.0)
- Microsoft.VisualStudio.Threading.Analyzers (>= 17.14.15)
- MongoDB.Driver (>= 3.5.1)
- Newtonsoft.Json (>= 13.0.4)
- NodaTime (>= 3.2.2)
- NuGet.Versioning (>= 7.0.0)
- RavenDB.Client (>= 7.1.4)
- ReactiveUI (>= 22.2.1)
- ReactiveUI.Maui (>= 22.2.1)
- Roslynator.Analyzers (>= 4.14.1)
- SonarAnalyzer.CSharp (>= 10.15.0.120848)
- Spectre.Console (>= 0.54.0)
- Spectre.Console.Analyzer (>= 1.0.0)
- Spectre.Console.Cli (>= 0.53.0)
- System.Interactive (>= 7.0.0)
- System.Interactive.Async (>= 7.0.0)
- System.Reactive (>= 6.1.0)
- Ulid (>= 1.4.1)
-
net10.0-windows10.0.19041
- Autofac.Extensions.DependencyInjection (>= 10.0.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Storage.Blobs (>= 12.26.0)
- FluentValidation (>= 12.1.0)
- Google.Protobuf (>= 3.33.1)
- Grpc.Tools (>= 2.76.0)
- IdGen (>= 3.0.7)
- LanguageExt.Core (>= 4.4.9)
- LanguageExt.FSharp (>= 4.4.9)
- LanguageExt.Parsec (>= 4.4.9)
- LiteDB (>= 5.0.21)
- MessagePack (>= 3.1.4)
- MessagePackAnalyzer (>= 3.1.4)
- Microsoft.CodeAnalysis.NetAnalyzers (>= 10.0.100)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Caching.Memory (>= 10.0.0)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
- Microsoft.Extensions.Http (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Localization.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Debug (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- Microsoft.Maui.Controls (>= 10.0.10)
- Microsoft.Maui.Controls.Compatibility (>= 10.0.10)
- Microsoft.PowerShell.SDK (>= 7.5.4)
- Microsoft.SourceLink.GitHub (>= 8.0.0)
- Microsoft.VisualStudio.Threading.Analyzers (>= 17.14.15)
- MongoDB.Driver (>= 3.5.1)
- Newtonsoft.Json (>= 13.0.4)
- NodaTime (>= 3.2.2)
- NuGet.Versioning (>= 7.0.0)
- RavenDB.Client (>= 7.1.4)
- ReactiveUI (>= 22.2.1)
- ReactiveUI.Maui (>= 22.2.1)
- Roslynator.Analyzers (>= 4.14.1)
- SonarAnalyzer.CSharp (>= 10.15.0.120848)
- Spectre.Console (>= 0.54.0)
- Spectre.Console.Analyzer (>= 1.0.0)
- Spectre.Console.Cli (>= 0.53.0)
- System.Interactive (>= 7.0.0)
- System.Interactive.Async (>= 7.0.0)
- System.Reactive (>= 6.1.0)
- Ulid (>= 1.4.1)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on TIKSN-Framework:
| Package | Downloads |
|---|---|
|
EasyDoubles
EasyDoubles - Test Doubles Framework |
|
|
Fossa.Licensing
Fossa Licensing |
|
|
TIKSN-Habitica
Package Description |
|
|
TIKSN.Lionize.Messaging
Package Description |
|
|
VerdantApp.Licensing
VerdantApp Licensing |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 5.5.3 | 2,659 | 11/22/2025 |
| 5.5.2 | 8,533 | 10/13/2025 |
| 5.5.1 | 788 | 10/13/2025 |
| 5.5.0 | 19,388 | 6/25/2025 |
| 5.4.4 | 36,551 | 2/24/2025 |
| 5.4.3 | 26,079 | 1/5/2025 |
| 5.4.2 | 24,925 | 11/30/2024 |
| 5.4.1 | 5,304 | 11/30/2024 |
| 5.4.0 | 7,640 | 11/29/2024 |
| 5.3.3 | 12,409 | 11/19/2024 |
| 5.3.2 | 47,078 | 10/7/2024 |
| 5.3.1 | 19,914 | 9/26/2024 |
| 5.3.0 | 47,106 | 8/22/2024 |
| 5.2.2 | 22,315 | 8/16/2024 |
| 5.2.1 | 29,383 | 8/3/2024 |
| 5.2.0 | 52,598 | 6/25/2024 |
| 5.1.1 | 60,393 | 5/24/2024 |
| 5.1.0 | 47,094 | 5/12/2024 |
| 5.0.1 | 51,936 | 4/18/2024 |
| 5.0.0 | 42,061 | 3/27/2024 |
| 4.5.4 | 25,472 | 3/8/2024 |
| 4.5.3 | 23,628 | 2/19/2024 |
| 4.5.2 | 42,698 | 12/20/2023 |
| 4.5.1 | 23,982 | 11/26/2023 |
| 4.5.0 | 42,914 | 11/6/2023 |
| 4.4.0 | 17,611 | 7/11/2023 |
| 4.3.3 | 16,384 | 1/20/2023 |
| 4.3.2 | 36,052 | 8/23/2022 |
| 4.3.1 | 23,920 | 5/22/2022 |
| 4.3.0 | 26,457 | 7/10/2021 |
| 4.2.0 | 11,244 | 7/10/2021 |
| 4.1.0 | 26,102 | 5/3/2021 |
| 4.0.0 | 11,566 | 11/21/2020 |
| 3.1.0 | 46,826 | 9/30/2018 |
| 3.0.1 | 37,672 | 4/21/2018 |
| 3.0.0 | 31,612 | 4/6/2018 |
| 2.1.0 | 12,296 | 7/27/2017 |
| 2.0.0 | 13,434 | 6/11/2017 |
| 1.6.0 | 16,248 | 12/30/2016 |
| 1.5.32 | 13,589 | 10/16/2016 |
| 1.4.22 | 1,460 | 5/14/2016 |
| 1.3.1 | 1,549 | 4/28/2016 |
| 1.2.0 | 2,374 | 3/5/2014 |
| 1.1.1 | 2,235 | 12/2/2013 |
| 1.1.0 | 2,117 | 11/28/2013 |
| 1.0.1 | 1,987 | 7/2/2013 |
| 1.0.0 | 1,900 | 7/2/2013 |
| 0.0.1.3 | 2,034 | 11/18/2012 |
| 0.0.1.2 | 1,940 | 11/18/2012 |
| 0.0.1.1 | 1,938 | 11/18/2012 |
Release Notes: https://github.com/tiksn/TIKSN-Framework/releases