Core expansion code nanites for CodeStencil Stencil engine
$ dotnet add package ZeraSystems.CodeNanite.ExpansionCore expansion code nanites library for the CodeStencil template engine.
This package provides the foundational expansion functionality for CodeStencil code nanites, including entity processing, HTML generation, and general utility functions for code generation templates.
Install-Package ZeraSystems.CodeNanite.Expansion -Version 2.0.0
dotnet add package ZeraSystems.CodeNanite.Expansion --version 2.0.0
<PackageReference Include="ZeraSystems.CodeNanite.Expansion" Version="2.0.0" />
This package is typically used as a base dependency for other CodeStencil code nanite packages. It provides core functionality that can be extended in your custom code nanites.
using ZeraSystems.CodeNanite.Expansion;
// Use extension methods for string manipulation
string singular = "Users".Singularize();
string plural = "User".Pluralize();
// Access entity expansion functionality
// This is typically used within CodeStencil templates
For complete documentation and examples, visit:
This package is licensed under the MIT License.
For support and questions:
Copyright � 2018-2025 ZERA Systems Inc.
git push origin upgrade-to-NET10