json2yaml 0.1.2-alpha

This is a prerelease version of json2yaml.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global json2yaml --version 0.1.2-alpha
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local json2yaml --version 0.1.2-alpha
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=json2yaml&version=0.1.2-alpha&prerelease
                    
nuke :add-package json2yaml --version 0.1.2-alpha
                    

json2yaml

A simple tool to convert json to yaml.

Usage

Usage: json2Yaml [options]

Options:
  -i|--input    Path to json input file. Required. F.e. `-i:input.json`. If empty value provided (`-i`), converter will search current directory for json file.
  -o|--output   Path to output yaml file. F.e. `-o:output.yaml` Optional. If ommited or empty value provided converter will output to file named like input, but with .yaml extension.
  -?|-h|--help  Show help information

The simplest use case:

json2yaml -i

This will search current directory for json file. Convert its contents to yaml. And writes output to file named as input file, but with extension .yaml.

Use case with both options:

json2yaml -i:input.json -o:output.yaml
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
6.0.0 180 11/20/2024
5.1.0 116 11/18/2024
5.0.0 5,252 12/28/2022
4.0.0 411 12/1/2022
3.0.1 2,717 11/28/2021
2.2.0 468 10/9/2021
2.1.0 604 12/20/2020
2.0.0 617 7/9/2020
1.3.0 641 5/31/2020
1.2.7 603 4/18/2020
1.2.6 605 3/6/2020
1.2.5 677 12/23/2019
1.2.4 603 12/23/2019
1.2.3 627 12/21/2019
1.2.2 627 12/18/2019
1.2.1 615 11/9/2019
1.2.0 612 11/9/2019
1.1.0 663 10/21/2019
1.0.5 770 9/9/2019
1.0.4 754 8/10/2019
1.0.3 723 7/7/2019
1.0.2 668 6/13/2019
1.0.1 687 5/18/2019
1.0.0 695 5/15/2019
0.4.0 1,013 4/6/2019
0.3.2 886 1/20/2019
0.3.1 780 12/17/2018
0.3.0 852 12/9/2018
0.2.0 786 11/24/2018
0.1.2-alpha 715 11/14/2018
0.1.1-alpha 641 11/8/2018
0.1.0-alpha 666 11/6/2018

0.1.2-alpha
     * Cleanup tool output to console.
     0.1.1-alpha
     * Handle gracefully command line parsing errors.