Skip to content

panoramicdata/PanoramicData.Vtl

Repository files navigation

PanoramicData.Vtl

Nuget Nuget License: MIT Codacy Badge

A nuget package for processing VTL.

Example use:

const string text =
@"Test File for $purpose
	with description ${description}
";
var variables = new Dictionary<string, object>
{
	["$purpose"] = "testing",
	["$description"] = "'the description'",
};
var vtlParser = new VtlParser();
var isSuccess = vtlParser.TryParse(text, variables, out var parsedText);

About

A nuget package for processing VTL.

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors