Skip to content

v0.5.5

Compare
Choose a tag to compare
@NeVeSpl NeVeSpl released this 11 Mar 17:34
· 14 commits to master since this release

This version introduces Lambda filters for *.nt templates rendered by NTypewriter editor for Visual Studio.

instead of writing this:

for class in data.Classes | Symbols.WhereNameStartsWith "Pro"

you can write lambda function using c# syntax:

for class in data.Classes | Where 'x => x.Name.StartsWith("Pro")'

Lambda filters are not supported (yet) on other platforms (NTypewriter.SourceGenerator, NTypewriter.Online).