C#从引用项目中获取xsd的最佳方法
我的应用程序引用了另一个项目,其中包含 XSD 文件。
获得 XSD 的最佳方式是什么?
我做了一些谷歌搜索,发现了一些建议,比如加载程序集并从中获取它,有没有更简单的方法?
My application references another a project which has an XSD file in it.
Whats the best way to get that XSD?
I did a bit of googling and found suggestions like load the assembly and get it from that, is there no easier way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 XSD 是程序集中的嵌入资源,那么您需要从程序集中获取它。
如果您的项目引用并使用该程序集,则无需再次加载它(内存中不需要 2 个副本)。
访问程序集的最简单方法是使用其中定义的类型之一:
If the XSD is an embedded resource in the assembly, then you need to get it from the assembly.
If your project references and uses the assembly, then you won't need to load it again (you don't need 2 copies in memory).
The easiest way to get to the assembly, would be from one of the types defined in it:
如果您已将 XSD 添加为资源,那么最简单的方法是使自动生成的
Properties.Resources
类公开可见并引用自动生成的属性。您还可以将Properties.Resources
保留为内部并添加InternalsVisibleTo
属性以允许其他程序集具有访问权限。除了这种方法之外,您还可以使用
目标程序集上的 GetManifestResourceStream
以提取 XSD 信息。If you've added the XSD as a resource then the easiest way is to make the auto-generated
Properties.Resources
class publicly visible and reference the auto-generated property. You could also keepProperties.Resources
internal and add anInternalsVisibleTo
attribute to allow your other assembly to have access.Other than that approach, you can use the
GetManifestResourceStream
on the target assembly to extract the XSD information.