Skip to content

v7.0.0

Choose a tag to compare

@swagfin swagfin released this 07 Oct 22:25
· 28 commits to master since this release
734f454

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