Black.Beard.Jslt
1.0.374
dotnet add package Black.Beard.Jslt --version 1.0.374
NuGet\Install-Package Black.Beard.Jslt -Version 1.0.374
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Black.Beard.Jslt" Version="1.0.374" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Black.Beard.Jslt" Version="1.0.374" />
<PackageReference Include="Black.Beard.Jslt" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Black.Beard.Jslt --version 1.0.374
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Black.Beard.Jslt, 1.0.374"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Black.Beard.Jslt@1.0.374
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Black.Beard.Jslt&version=1.0.374
#tool nuget:?package=Black.Beard.Jslt&version=1.0.374
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Implementation of jslt language in DOTNET. Use a template for transform Json document to another json document.
The following sample for help you to easy start.
using Bb;
using Bb.Jslt.Services;
using System.Text;
public static class TemplateHelper
{
/// <summary>
/// Call this method for load anc compile template
/// </summary>
/// <param name="file">file that content the template jslt</param>
/// <param name="withDebug">if true, activate the debug mode</param>
/// <param name="paths">that for auto detect extended services</param>
/// <param name="services">add extended services</param>
/// <returns></returns>
public static JsltTemplate LoadTemplate(this FileInfo file, bool withDebug, string[] paths, params Type[] services)
{
var content = file.FullName.LoadFile();
StringBuilder sb = new StringBuilder();
var _template = sb.GetTransformProvider(withDebug, file.FullName, paths, services);
return _template;
}
public static JsltTemplate GetTransformProvider(this StringBuilder sb, bool withDebug, string templatefilename, string[] paths, params Type[] services)
{
var provider = GetProvider(paths, services);
JsltTemplate template = provider.GetTemplate(sb, withDebug, templatefilename);
return template;
}
public static TemplateTransformProvider GetProvider(string[] paths, params Type[] services)
{
var configuration = new TranformJsonAstConfiguration();
// If you haven't added Package "Black.Beard.Jslt.Services" you must comment this line.
// configuration.Assemblies.Add(typeof(Bb.Jslt.Services.Services).Assembly);
if (paths != null)
foreach (var item in paths)
if (!string.IsNullOrEmpty(item))
configuration.Paths.Add(item);
foreach (var item in services)
configuration.Services.ServiceDiscovery.AddService(item);
TemplateTransformProvider Templateprovider = new TemplateTransformProvider(configuration);
return Templateprovider;
}
}
Now a sample for use template
var file = new FileInfo(rulePayload);
file.Refresh();
if (!file.Exists)
throw new Exception($"the path '{file}' can't be resolved.");
// Build template
var _template = file.LoadTemplate(false, new string[0]);
// create an instance of sources with no datas
var src = Sources.GetEmpty();
// inject data in the model, for accessing by json path '$"
// var src2 = new Sources(SourceJson.GetFromText("{}"));
// Add a value for for accessing from the template
src.Variables.Add("My value", new JValue(1));
// execute template but not apply output directives.
var ctx = _template.Transform(src);
// execute template and apply output directives.
var result = _template.TransformForOutput(src);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Antlr4.Runtime.Standard (>= 4.9.3)
- Black.Beard.Analysis (>= 1.0.131)
- Black.Beard.ComponentModel (>= 1.0.124)
- Black.Beard.Helpers.Randoms (>= 2.0.47)
- Black.Beard.Roslyn (>= 1.0.131)
- System.CodeDom (>= 9.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Black.Beard.Jslt:
| Package | Downloads |
|---|---|
|
Black.Beard.Jslt.Services
support extended method(loading excel, html, multicsv, sql). |
|
|
Black.Beard.Jslt.Symbol
Implementation of jslt language in DOTNET. Use a template for transform Json document to another json document. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.374 | 342 | 12/7/2024 |
| 1.0.373 | 271 | 12/7/2024 |
| 1.0.372 | 268 | 11/20/2024 |
| 1.0.371 | 256 | 11/20/2024 |
| 1.0.370 | 258 | 11/16/2024 |
| 1.0.369 | 259 | 11/16/2024 |
| 1.0.368 | 251 | 11/14/2024 |
| 1.0.367 | 248 | 11/14/2024 |
| 1.0.366 | 280 | 11/13/2024 |
| 1.0.365 | 259 | 11/13/2024 |
| 1.0.364 | 272 | 11/12/2024 |
| 1.0.363 | 284 | 11/12/2024 |
| 1.0.362 | 249 | 11/11/2024 |
| 1.0.361 | 247 | 11/11/2024 |
| 1.0.360 | 255 | 11/11/2024 |
| 1.0.359 | 263 | 11/11/2024 |
| 1.0.358 | 280 | 11/11/2024 |
| 1.0.357 | 265 | 11/11/2024 |
| 1.0.356 | 280 | 11/10/2024 |
| 1.0.355 | 263 | 11/10/2024 |
Loading failed