mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-09 02:26:47 +00:00
[PR #1032] [CLOSED] Bump csharpier from 1.1.2 to 1.2.1 #1454
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/1032
Author: @dependabot[bot]
Created: 11/24/2025
Status: ❌ Closed
Base:
master← Head:dependabot/nuget/dot-config/csharpier-1.2.1📝 Commits (1)
77ea89eBump csharpier from 1.1.2 to 1.2.1📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
.config/dotnet-tools.json(+1 -1)📄 Description
Updated csharpier from 1.1.2 to 1.2.1.
Release notes
Sourced from csharpier's releases.
1.2.1
What's Changed
Multiline comments are now formatted in a single line in XML format #1747
The 1.2.0 release was combining xml comments into a single line.
Full Changelog: https://github.com/belav/csharpier/compare/1.2.0...1.2.1
1.2.0
What's Changed
Custom XML Parser #1679
CSharpier now has a custom xml parser.
XmlDocumentandXDocumentdo not provide the original white space or the original attribute values from the file that was parsed which blocked the ability to implement supporting keeping empty new lines and not automatically encoding attributes.Support for keeping empty lines in xml files #1599
CSharpier now supports keeping a single empty line between elements in xml files. It will remove any initial or trailing empty lines.
Xml - don't automatically encode attribute values #1610
CSharpier will no longer encode attribute values. It will leave them encoded if they are supplied that way.
Add option to all integrations to report incorrect formatting as a warning instead of error #1687
Formatting "using" import split on multiple lines requires formatting it twice to get the expected result #1698
When a using contained a newline before the namespace it was not being sorted properly.