-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
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
Fix potential XML namespace bug #2979
Conversation
dependentAssembly elements will be imported into the web.config, and need to have the correct namespace there For #2971
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Since this is not regression, I have assigned it to 9.4.1, let me know if you want to to it differently... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
Very cool, awesome & thanks! |
The background for this issue is documented in #2971. This PR fixes a bug that can be introduced when using
collision="save"
with an incorrectly created XML Merge file. This can result in an element with a namespace being replaced by an element that has the namespace reset (e.g.<dependentAssembly xmlns="">
), resulting in that element being ignored.