-
Notifications
You must be signed in to change notification settings - Fork 547
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
Change commentextensionlist ext element to 2006/main namespace #1754
Conversation
tomjebo
commented
Jul 22, 2024
- fixes Found OpenXmlUnknownElement instead of CommentPropertiesExtension #1751
/// <item><description>corresponds to the following strongly-typed classes: CommentPropertiesExtension.</description></item> | ||
/// </list> | ||
/// </remarks> | ||
public static readonly XName ext = p188 + "ext"; |
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.
public partial class ....
{
[Obsolete("This is invalid for the namespace - use .... instead")]
public static readonly XName ext = p188 + "ext";
}
@@ -1188,95 +1192,6 @@ internal override void ConfigureMetadata(ElementMetadata.Builder builder) | |||
public override OpenXmlElement CloneNode(bool deep) => CloneImp<Comment>(deep); | |||
} | |||
|
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.
namespace ....;
{
[Obsolete("use ... instead", error: true)]
public partial class CommentPropertiesExtension: DocumentFormat.OpenXml.Presentation.CommentPropertiesExtension
{
... [ constructors ]
}
}
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 once the tests are passing and the additional attribute is added