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
I've noticed that specifying an unquoted boolean value for a JSON file property will result in an incorrect value. For example:
Target file:
{ "UseMySetting": false }
Magic-chunks transformation (expected result):
{ "UseMySetting": true }
Actual:
{ "UseMySetting": "True" }
This will result in a valid JSON file but is not the expected end result with a correct JSON boolean value.
The text was updated successfully, but these errors were encountered:
I'm dealing with that same problem.
Sorry, something went wrong.
This issue needs more attention.
Same problem. 😭
I'd suggest to use the ReplaceTokens task from colindembovsky instead.
No branches or pull requests
I've noticed that specifying an unquoted boolean value for a JSON file property will result in an incorrect value. For example:
Target file:
Magic-chunks transformation (expected result):
Actual:
This will result in a valid JSON file but is not the expected end result with a correct JSON boolean value.
The text was updated successfully, but these errors were encountered: