Compatibility And Support
This page gives a concise compatibility view for developers evaluating whether VersaTul fits their application baseline.
Current Target Framework Baseline
The documented VersaTul library packages are built for modern .NET.
Based on the current package projects in the main VersaTul repository:
Most documented library packages target
net8.0andnet9.0.VersaTul.Data.FileReadercurrently targetsnet8.0.
That means the safest adoption assumption today is that VersaTul is intended for current-generation .NET applications rather than older .NET Framework workloads.
Documented Package Surface
These docs are intentionally scoped to the NuGet-distributed library projects.
They do not treat host projects or test projects as part of the public adoption surface.
External Dependency Profile
The repository currently centralizes package versions through the shared package props file and includes dependencies such as:
Microsoft.EntityFrameworkCorefor EF Core support.Microsoft.Data.SqlClientfor SQL Server access.MongoDB.Driverfor MongoDB support.Microsoft.Extensions.Caching.Memoryfor default in-memory caching support.
This matters for adopters because different VersaTul packages pull in different infrastructure dependencies depending on the workflow you choose.
Practical Compatibility Guidance
If your service is already on
net8.0ornet9.0, VersaTul is aligned with that baseline.If you need SQL Server-specific features, prefer Data MsSql over trying to stretch Data Sql into a SQL Server-only role.
If you need provider flexibility, prefer Data Sql first and move to Data MsSql only when the requirement becomes SQL Server-specific.
If your workflow depends on file-based import, check Data FileReader because it currently has the narrower target-framework baseline.
Compatibility Expectations By Package Style
Different VersaTul packages fit different application shapes.
Foundation packages such as configuration, contracts, utilities, and extensions are the easiest to adopt in almost any modern .NET application.
Data packages depend more heavily on your storage and provider choices.
Operational packages such as logging and mailer depend on the delivery target you choose.
Export and file-processing packages depend more on your workflow than on framework integration.
What This Page Does Not Promise
This page is intended as an adoption-oriented baseline, not a full support policy.
It does not attempt to guarantee:
every transitive dependency combination,
every hosting model, or
backward compatibility with legacy .NET Framework projects.
What To Read Next
Read Recommended Paths if you want an opinionated starting point by application type.
Read FAQ if your remaining questions are about adoption fit and package choice.
Read Choosing Packages if you need to decide between similar package families.