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
Target JSON
{ "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } }
Transformation for the config:
{ "Logging/IncludeScopes": true }
Expected transformation result:
{ "Logging": { "IncludeScopes": true, "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } }
Actually transformation result:
{ "Logging": { "IncludeScopes": "True", "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } }
The result is: the boolean value [false] has been replaced with ["True"]. How to keep the original value type after field is replaced in JSON file?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here goes the example:
Target JSON
Transformation for the config:
Expected transformation result:
Actually transformation result:
The result is: the boolean value [false] has been replaced with ["True"].
How to keep the original value type after field is replaced in JSON file?
The text was updated successfully, but these errors were encountered: