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 have file with like this structure:
# comment a: 0 b: 0
I load, change some value and save it:
var options = new HjsonOptions { EmitRootBraces = false, KeepWsc = true }; var config = HjsonValue.Load(configurationFileName, options); config["a"] = 1; HjsonValue.Save(config, configurationFileName, options);
After that file has mixed line endings:
The situation repeats regardless of the source line endings. Files for testing: CRLFConfig.txt LFConfig.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have file with like this structure:
I load, change some value and save it:
After that file has mixed line endings:
The situation repeats regardless of the source line endings. Files for testing:
CRLFConfig.txt
LFConfig.txt
The text was updated successfully, but these errors were encountered: