JTranTransformThis Azure DevOps task transforms a json file (or multiple files) using the jtran language. For a complete JTran language reference go here. Example
ParametersInputSourcePathThe source json file. Multiple files can be specified using wildcards. Each source file will be transformed using the transform provided. TransformPathPath to the jtran file OutputDestinationPathPath where to write the result of the transform IncludePathAn optional path to include files. See the language reference for more information. DocumentPathAn optional path to document files. When this is used the document source name is "all". See the language reference for more information. MultipleOutputAn optional indication on whether to output multiple files. TransformParametersAn optional list of parameters to pass to the transform. The name of parameters must be preceded by a hypen followed by the value. Values may be double quoted (necessary when they contain a space). ArgumentsProviderPathAn optional path to a dll that contains arguments int the transform. ArgumentsClassWhen ArgumentsProviderPath is provided this parameter is required to specify a dictionary class with a list of arguments. Must be in the format <namespace.class_name>. Class must be derived from IDictionary<string, object> and constructor must have no parameters. |