v7.0.0
What's Changed
⚠️ Breaking Change
This release introduces a new entry point that changes how the library is used.
Mapping is now available directly as an extension on both string and type T.
Updated Usage:
// Map using the object instance
string result = person.Map("I am {{ Name }}!");
// Or map starting from the string template
string result = "I am {{ Name }}!".Map(person);Other Optimizations
Full Changelog: v6.0.5...v7.0.0