Blazor: Why System.Xml? #26780
Unanswered
LukeTOBrien
asked this question in
Q&A
Replies: 1 comment
-
@mkArtakMSFT What's your take on this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
For a while now I have been trying to to remove dependencies in the hope of lowering the download size and minimizing the number of DLLs my app needs.
One of the DLLs that I have not been able the remove is
System.Xml.dll
(and it's sisterSystem.Linq.Xml.dll
)This file is about 1.5MB (sometimes smaller) and is one of the biggest dependencies my app has, it is also the most complexing mystery to me as all HTTP request are in JSON and I don;t know what is using it.
It seems to me that
System.Xml.dll
is used in the Blazor framework, here is the default app template (albeit 3.2.0 RC1):So my question is, where is
System.Xml
being used and can it be removed?Beta Was this translation helpful? Give feedback.
All reactions