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
Hello, I think there is a problem in CSHtmlMinifier.cs, because headers are restored in reverse order. Example:
@page @inherits "Web_View" ...
is restored as
@inherits "Web_View" @page ...
have a nice day, Jerome
The text was updated successfully, but these errors were encountered:
Proposed patch on line 60 replace : headers.Add(content); with headers.Insert(0, content);
headers.Add(content);
headers.Insert(0, content);
Sorry, something went wrong.
Looks like I somehow never noticed that, I'll fix it ASAP. You can also create a Pull Request if you think that this already resolves the issue.
3da9784
Your issue is fixed in version 2.2.2, thanks for reporting it.
TwentyFourMinutes
No branches or pull requests
Hello,
I think there is a problem in CSHtmlMinifier.cs, because headers are restored in reverse order.
Example:
is restored as
have a nice day,
Jerome
The text was updated successfully, but these errors were encountered: