We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JsonFile Case1 { Path = 'C:\Test.json' Key = 'Key1' Value = 'true' } JsonFile Case2 { Path = 'C:\Test.json' Key = 'Key2' Value = 'True' } JsonFile Case3 { Path = 'C:\Test.json' Key = 'Key3' Value = '"true"' } JsonFile Case4 { Path = 'C:\Test.json' Key = 'Key4' Value = $true } JsonFile Case5 { Path = 'C:\Test.json' Key = 'Key4' Value = '[true]' }
{ "Key1": true, "Key2": true, "Key3": "true", "Key4": true }
{ "Key1": true, "Key2": "True", "Key3": "true", "Key4": "True" }
The text was updated successfully, but these errors were encountered:
[JsonFile] Changes the behavior when specifying a value that bool or …
678f6fd
…bool parsable to the Value parameter. This is the BREAKING CHANGE
No branches or pull requests
Steps to reproduce
Expected behavior
Actual behavior
The text was updated successfully, but these errors were encountered: